1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-02 20:15:22 +02:00
Maybe/app/views/password_resets/new.html.erb

10 lines
299 B
Text
Raw Normal View History

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