sign-in.html 885 B

12345678910111213141516171819202122232425
  1. <form action="{{ site.base }}/" method="get" autocomplete="off" novalidate>
  2. <div class="mb-3">
  3. <label class="form-label">Email address</label>
  4. <input type="email" class="form-control" placeholder="your@email.com" autocomplete="off">
  5. </div>
  6. <div class="mb-2">
  7. <label class="form-label">
  8. Password
  9. <span class="form-label-description">
  10. <a href="{{ site.base }}/forgot-password.html">I forgot password</a>
  11. </span>
  12. </label>
  13. {% include ui/form/input-group.html type="password" append-button="eye:Show password" flat=true placeholder="Your password" %}
  14. </div>
  15. <div class="mb-2">
  16. <label class="form-check">
  17. <input type="checkbox" class="form-check-input"/>
  18. <span class="form-check-label">Remember me on this device</span>
  19. </label>
  20. </div>
  21. <div class="form-footer">
  22. <button type="submit" class="btn btn-primary w-100">Sign in</button>
  23. </div>
  24. </form>