Skip to content

Instantly share code, notes, and snippets.

@somecallmejosh
Last active November 29, 2016 20:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save somecallmejosh/50e96612adef781288d81d0aad342d9b to your computer and use it in GitHub Desktop.
Save somecallmejosh/50e96612adef781288d81d0aad342d9b to your computer and use it in GitHub Desktop.
<form action="#" class="atkForm atkForm--stacked b" novalidate>
<div class="atkForm__fields">
<div class="atkForm__group">
<label class="atkForm__group--label" for="firstName">First Name</label>
<input class="atkForm__group--input" type="text" name="firstName" required />
<div class="atkForm__group--error">First Name is required</div>
</div>
<div class="atkForm__group">
<label class="atkForm__group--label" for="lastName">Last Name</label>
<input class="atkForm__group--input" type="text" name="lastName" required />
<div class="atkForm__group--error">Last Name is required</div>
</div>
<div class="atkForm__group">
<label class="atkForm__group--label" for="email">Enter Your Email Address</label>
<input class="atkForm__group--input" type="email" name="email" required />
<div class="atkForm__group--message">How we use your email <span>?</span></div>
<div class="atkForm__group--error">Email is required</div>
</div>
<div class="atkForm__group">
<label class="atkForm__group--label" for="password">Password</label>
<input class="atkForm__group--input" type="password" name="password" required />
<div class="atkForm__group--error">Password is required</div>
</div>
</div>
<div class="atkForm__action">
<button class="atkForm__submit" type="submit">Submit</button>
</div>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment