mostly filebased Content Presentation System
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

38 lines
1.0KB

  1. <form action="/register" style="border:1px solid #ccc">
  2. <div class="container">
  3. <h1>Sign Up</h1>
  4. <p>Please fill in this form to create an account.</p>
  5. <hr>
  6. <label for="email"><b>Email</b></label>
  7. <input
  8. type="text"
  9. placeholder="Enter Email"
  10. name="email"
  11. value="{{ @FORM.email }}"
  12. required>
  13. <label for="psw"><b>Password</b></label>
  14. <input
  15. type="password"
  16. placeholder="Enter Password"
  17. name="psw"
  18. value="{{ @FORM.password }}"
  19. required>
  20. <label for="psw-repeat"><b>Repeat Password</b></label>
  21. <input type="password" placeholder="Repeat Password" name="psw-repeat" required>
  22. <label>
  23. <input type="checkbox" checked="checked" name="remember"> Remember me
  24. </label>
  25. <p>By creating an account you agree to our <a href="/terms" >Terms & Privacy</a>.</p>
  26. <div class="clearfix">
  27. <button type="button" class="cancelbtn">Cancel</button>
  28. <button type="submit" class="signupbtn">Sign Up</button>
  29. </div>
  30. </div>
  31. </form>