femslash-city/views/settings/account/password.erb
Agnes 596fd85f2f
Some checks failed
CI / test (push) Has been cancelled
accidentally leaked secrets so had to nuke shit fuck
2026-08-19 17:29:54 -04:00

17 lines
556 B
Text

<h2>Change Password</h2>
<form method="POST" action="/settings/change_password">
<%== csrf_token_input_html %>
<% unless current_site.password_reset_confirmed %>
<p>Current Password:</p>
<input class="input-Area" name="current_password" type="password">
<% end %>
<p>New Password:</p>
<input class="input-Area" name="new_password" type="password">
<p>Confirm New Password:</p>
<input class="input-Area" name="new_password_confirm" type="password">
<p><input class="btn-Action" type="submit" value="Change Password"></p>
</form>