mirror of
https://github.com/we-promise/sure.git
synced 2026-04-17 02:54:10 +00:00
* Added erblint and fixed offenses * Added erblint bintstub. Included erblint into CI * Merged GitHub Actions tasks for rubocop and erblint into one * Added config for erblint. * Reverted erblint call in the CI
12 lines
301 B
Plaintext
12 lines
301 B
Plaintext
<%
|
|
header_title t(".title")
|
|
%>
|
|
|
|
<%= form_with url: password_reset_path do |form| %>
|
|
<%= auth_messages form %>
|
|
|
|
<%= form.email_field :email, label: true, autofocus: false, autocomplete: "email", required: "required", placeholder: "you@example.com" %>
|
|
|
|
<%= form.submit t(".submit") %>
|
|
<% end %>
|