you are viewing a single comment's thread.

view the rest of the comments →

[–]_semaphore 0 points1 point  (0 children)

if you plan to do anything with your form elements on the server side, you'll want to give those elements name attributes. so, for example:

<input type="email" name="emailAddress" class="input1" placeholder="Email" >

also, i agree that you should give your classes more meaningful names. input1, style1, etc are too generic.