2024-11-05 17:15:29 -05:00
|
|
|
<% header_title t(".title") %>
|
2024-02-02 09:05:04 -06:00
|
|
|
|
2024-11-05 17:15:29 -05:00
|
|
|
<% 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" %>
|
2024-02-02 09:05:04 -06:00
|
|
|
|
2024-11-05 17:15:29 -05:00
|
|
|
<%= form.submit t(".submit") %>
|
|
|
|
<% end %>
|
2024-02-03 16:14:47 +00:00
|
|
|
<% end %>
|