mirror of
https://github.com/we-promise/sure.git
synced 2026-04-08 06:44:52 +00:00
11 lines
347 B
Plaintext
11 lines
347 B
Plaintext
<%
|
|
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 %>
|