ku-polls/polls/templates/registration/password_reset_confirm.html
sosokker 01ea565859 Add User+Authenticate(login,logout,reset password)
Also add view for signup page + custom form for signup
2023-09-11 23:38:13 +07:00

12 lines
303 B
HTML

{% if validlink %}
<h1>Set a new password!</h1>
<form method="POST">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Change my password">
</form>
{% else %}
<p>The password reset link was invalid, possibly because it has already been used. Please request a new password reset.</p>