forgot-password.html 749 B

123456789101112131415161718
  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">Forgot password</h2>
  4. <p class="text-secondary mb-4">Enter your email address and your password will be reset and emailed to you.</p>
  5. <div class="mb-3">
  6. <label class="form-label">Email address</label>
  7. <input type="email" class="form-control" placeholder="Enter email">
  8. </div>
  9. <div class="form-footer">
  10. {% include ui/button.html text="Send me new password" block=true color="primary" icon="mail" %}
  11. </div>
  12. </div>
  13. </form>
  14. <div class="text-center text-secondary mt-3">
  15. Forget it, <a href="{{ site.base }}/sign-in.html">send me back</a> to the sign in screen.
  16. </div>