Skip to content

Instantly share code, notes, and snippets.

@mstaack
Created July 8, 2015 15:16
Show Gist options
  • Save mstaack/3aacff86612990cc7a20 to your computer and use it in GitHub Desktop.
Save mstaack/3aacff86612990cc7a20 to your computer and use it in GitHub Desktop.
<template name="register">
<div class="register-container">
<legend>Registration</legend>
<form role="form" action="#" class="register">
<div class="form-group">
<input type="text" id="firstname" class="form-control" placeholder="Firstname">
</div>
<div class="form-group">
<input type="text" id="lastname" class="form-control" placeholder="Lastname">
</div>
<div class="form-group">
<input type="text" id="birthday" class="form-control" placeholder="Birthday" data-vm-mask-date>
</div>
<div class="form-group">
<input type="email" id="email" class="form-control" placeholder="Email">
</div>
<div class="form-group">
<input type="password" id="password" class="form-control" placeholder="Your password">
</div>
<div class="form-group">
<input type="password" id="repeatPassword" class="form-control" placeholder="Repeat your password">
</div>
<button type="submit" value="register" class="btn btn-primary block full-width">Sign up</button>
</form>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment