sign-up.html 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. <form class="card card-md" action="{{ site.base }}/" method="get" autocomplete="off" novalidate>
  2. <div class="card-body">
  3. <h2 class="card-title text-center mb-4">Create new account</h2>
  4. <div class="mb-3">
  5. <label class="form-label">Name</label>
  6. <input type="text" class="form-control" placeholder="Enter name">
  7. </div>
  8. <div class="mb-3">
  9. <label class="form-label">Email address</label>
  10. <input type="email" class="form-control" placeholder="Enter email">
  11. </div>
  12. <div class="mb-3">
  13. <label class="form-label">Password</label>
  14. {% include ui/form/input-group.html type="password" append-button="eye:Show password" flat=true placeholder="Password" %}
  15. </div>
  16. <div class="mb-3">
  17. <label class="form-check">
  18. <input type="checkbox" class="form-check-input"/>
  19. <span class="form-check-label">Agree the <a href="{{ site.base }}/terms-of-service.html" tabindex="-1">terms and policy</a>.</span>
  20. </label>
  21. </div>
  22. <div class="form-footer">
  23. <button type="submit" class="btn btn-primary w-100">Create new account</button>
  24. </div>
  25. </div>
  26. </form>
  27. <div class="text-center text-secondary mt-3">
  28. Already have account? <a href="{{ site.base }}/sign-in.html" tabindex="-1">Sign in</a>
  29. </div>