1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-22 22:59:39 +02:00
Maybe/app/views/password_resets/edit.html.erb
Zach Gollwitzer f2739b79fb
Some checks are pending
Publish Docker image / ci (push) Waiting to run
Publish Docker image / Build docker image (push) Blocked by required conditions
Improve password reset flow, normalize translations
2024-11-05 17:15:29 -05:00

10 lines
347 B
Text

<%
header_title t(".title")
%>
<%= 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 %>
<%= form.submit %>
<% end %>