add_user.mustache 509 B

1234567891011121314151617181920
  1. <div class="config-pane">
  2. Sign up using invite code {{token}}.
  3. <form name="new-user" method="POST">
  4. <div>
  5. <label for="username">Username</label>
  6. <input name="username" type="text" />
  7. </div>
  8. <div>
  9. <label for="n1">Password</label>
  10. <input name="n1" type="password" />
  11. </div>
  12. <div>
  13. <label for="n2">Retype password</label>
  14. <input name="n2" type="password" />
  15. </div>
  16. <div>
  17. <input type="submit" value="Sign up" />
  18. </div>
  19. </form>
  20. </div>