Created
July 8, 2015 15:16
-
-
Save mstaack/3aacff86612990cc7a20 to your computer and use it in GitHub Desktop.
This file contains 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
<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