You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
639 B
16 lines
639 B
<h3 class="text-center mb-3 text-white">Forgot your password?</h3> |
|
|
|
<%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f| %> |
|
<%= render "devise/shared/error_messages", resource: resource %> |
|
|
|
<div class="mb-3"> |
|
<label for="exampleFormControlInput1" class="form-label"><%= f.label :email %></label> |
|
<%= f.email_field :email, autofocus: true, autocomplete: "email", class: "form-control" %> |
|
</div> |
|
|
|
<div class="d-grid gap-2 mb-3"> |
|
<%= f.submit "Send me reset password instructions", class: "btn btn-danger" %> |
|
</div> |
|
<% end %> |
|
|
|
<%= render "devise/shared/links" %>
|
|
|