Created
June 24, 2017 23:50
-
-
Save guzmonne/a1b195b5a1b9235860a3200abe4ed87c to your computer and use it in GitHub Desktop.
cognito-auth.SignupForm.template.html
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
| <script type="text/html" id="SignupForm"> | |
| <div class="SignupForm"> | |
| <div class="title">Sign Up</div> | |
| <form class="form"> | |
| <div class="Control"> | |
| <label class="Control__label" for="user">User</label> | |
| <input class="Control__input" name="user" type="text" placeholder="User" /> | |
| </div> | |
| <div class="Control"> | |
| <label class="Control__label" for="password">Password</label> | |
| <input class="Control__input" name="password" type="password" placeholder="Password" /> | |
| </div> | |
| <div class="Control"> | |
| <label class="Control__label" for="repeat-password"> | |
| Repeat Password | |
| </label> | |
| <input class="Control__input" name="repeat-password" type="password" placeholder="Repeat Password" /> | |
| </div> | |
| <input class="Control__input" type="submit" value="Sign me up!" /> | |
| <a class="Control__link" href="#login"> | |
| Send me back to the login page. | |
| </a> | |
| </form> | |
| </div> | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment