1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-23 07:09:39 +02:00
Maybe/app/views/password_resets/edit.html.erb

11 lines
347 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 model: @user, url: password_reset_path(token: params[:token]), method: :patch, class: "space-y-4" do |form| %>
<%= form.password_field :password, required: true, label: true %>
<%= form.password_field :password_confirmation, required: true, label: true %>
2024-02-02 09:05:04 -06:00
<%= form.submit %>
<% end %>