mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-24 07:39:39 +02:00
11 lines
436 B
Text
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 %>
|