Skip to content

Instantly share code, notes, and snippets.

@rkjha
Created May 13, 2015 17:10
Show Gist options
  • Save rkjha/1b0f03a12384d236f9f5 to your computer and use it in GitHub Desktop.
Save rkjha/1b0f03a12384d236f9f5 to your computer and use it in GitHub Desktop.
A sample form when using skeleton css.
<form id="loginForm" action="/whatever" method="post">
<div class="row">
<div class="seven columns">
<label for="email">Email Address</label>
<input type="text" name="email" id="emailField" placeholder="[email protected]" required/>
<label for="password">Password</label>
<input type="password" name="password" id="passwordField" required/>
<button type="submit" class="button-primary">Sign In</button>
</div>
<div class="five columns">
<p>Something else</p>
</div>
</div>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment