Skip to content

Instantly share code, notes, and snippets.

@guzmonne
Created June 24, 2017 23:50
Show Gist options
  • Select an option

  • Save guzmonne/a1b195b5a1b9235860a3200abe4ed87c to your computer and use it in GitHub Desktop.

Select an option

Save guzmonne/a1b195b5a1b9235860a3200abe4ed87c to your computer and use it in GitHub Desktop.
cognito-auth.SignupForm.template.html
<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