1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-24 07:39:39 +02:00
Maybe/app/views/password_resets/new.html.erb
Zach Gollwitzer f2739b79fb
Some checks are pending
Publish Docker image / ci (push) Waiting to run
Publish Docker image / Build docker image (push) Blocked by required conditions
Improve password reset flow, normalize translations
2024-11-05 17:15:29 -05:00

11 lines
436 B
Text

<% header_title t(".title") %>
<% if params[:step] == "pending" %>
<p class="text-sm text-gray-500 text-center"><%= t(".requested") %></p>
<% else %>
<%= styled_form_with url: password_reset_path, class: "space-y-4" do |form| %>
<%= form.email_field :email, label: true, autofocus: false, autocomplete: "email", required: "required", placeholder: "you@example.com" %>
<%= form.submit t(".submit") %>
<% end %>
<% end %>