mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
17 lines
549 B
Text
17 lines
549 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">
|
|
|
|
<input class="btn-Action" type="submit" value="Change Password">
|
|
</form>
|