Skip to content

Instantly share code, notes, and snippets.

@gorgogol
Created August 12, 2014 16:17
Show Gist options
  • Save gorgogol/e91897c65de86988277c to your computer and use it in GitHub Desktop.
Save gorgogol/e91897c65de86988277c to your computer and use it in GitHub Desktop.
A simple example of a form using Twitter Bootstrap.
<form id="registerForm" role="form" class="form">
<div class="form-group"><label>Username</label><input class="form-control" name="username" type="text" required></input class="form-control" ></div>
<div class="form-group"><label>E-mail</label><input class="form-control" name="email" type="email" required></input class="form-control" ></div>
<div class="form-group"><label>Password</label><input class="form-control" name="password" type="password" required></input class="form-control" ></div>
` <div class="form-group"><label>Password (verify)</label><input class="form-control" name="verifyPassword" type="password" required></input class="form-control" ></div>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment