9 lines
428 B
Plaintext
9 lines
428 B
Plaintext
<% content_for :page_title, t(".title") %>
|
|
|
|
<div class="col-md-4 offset-md-4 mt-5">
|
|
<%= bootstrap_form_with scope: :password_reset, url: password_resets_path, method: :post, html: { autocorrect: :off, autocapitalize: :none, autocomplete: :off, spellcheck: false } do |form| %>
|
|
<%= form.email_field :email, required: true %>
|
|
<%= form.button t(".submit"), class: "btn btn-block btn-lg btn-primary" %>
|
|
<% end %>
|
|
</div>
|