Skip to content

Instantly share code, notes, and snippets.

@rkjha
Created May 13, 2015 17:10
Show Gist options
  • Select an option

  • Save rkjha/1b0f03a12384d236f9f5 to your computer and use it in GitHub Desktop.

Select an option

Save rkjha/1b0f03a12384d236f9f5 to your computer and use it in GitHub Desktop.

Revisions

  1. rkjha created this gist May 13, 2015.
    16 changes: 16 additions & 0 deletions skeleton-form.html
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,16 @@
    <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>