mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-22 22:59:39 +02:00
10 lines
347 B
Text
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 %>
|