1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-25 16:19:40 +02:00
Maybe/app/views/password_resets/new.html.erb

12 lines
436 B
Text
Raw Normal View History

<% header_title t(".title") %>
2024-02-02 09:05:04 -06: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
<%= form.submit t(".submit") %>
<% end %>
<% end %>