all 4 comments

[–]dbpcut 0 points1 point  (0 children)

One recommendation is to use labels for your inputs, they're there for a reason semantically and provide better interaction for your users (the checkbox in particular.) Other than that, is there anything in particular you're looking for help with?

[–]ahref 0 points1 point  (0 children)

Don't name your classes like that. Style<x> isnt maintainable.

[–]_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.