Created
May 13, 2015 17:10
-
-
Save rkjha/1b0f03a12384d236f9f5 to your computer and use it in GitHub Desktop.
A sample form when using skeleton css.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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