docbrown/app/views/devise/passwords/new.html.erb
rhymes b94dea9b70
Upgrade erb_lint to support latest Rubocop and fix violations (#9663)
* Upgrade erb_lint to support latest Rubocop and fix violations

* Wrong template name
2020-08-07 15:36:48 +02:00

16 lines
627 B
Text

<%= devise_error_messages! %>
<div class="mt-8 mb-10 crayons-card p-7 pt-3 align-left mx-auto" style="max-width:490px;">
<h2 class="pb-4">Forgot your password?</h2>
<%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f| %>
<div class="crayons-field">
<%= f.label :email, class: "crayons-field__label" %>
<%= f.email_field :email, class: "crayons-textfield", placeholder: "you@email.com" %>
</div>
<div class="crayons-field pt-6">
<%= f.submit "Send me reset password instructions", class: "crayons-btn" %>
</div>
<% end %>
</div>