2021-10-15 14:08:27 +00:00
|
|
|
{% extends "authforms.html" %}
|
|
|
|
|
2022-01-13 23:39:39 +00:00
|
|
|
{% block pagetitle %}{{SITE_NAME}} Password Reset{% endblock %}
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
{% block authtitle %}Change your password.{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<div id="login-form" class="">
|
|
|
|
|
|
|
|
<form action="/reset" method="post" class="mt-3">
|
|
|
|
|
2022-03-19 16:19:02 +00:00
|
|
|
<input type="hidden" name="time" value="{{time}}">
|
|
|
|
<input type="hidden" name="user_id" value="{{v.id}}">
|
|
|
|
<input type="hidden" name="token" value="{{token}}">
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
<label for="passentry" class="mt-3">New Password</label>
|
|
|
|
|
2021-12-28 12:41:26 +00:00
|
|
|
<input autocomplete="off" class="form-control" id="passentry" aria-describedby="usernameHelp"
|
2021-10-15 14:08:27 +00:00
|
|
|
type="password" name="password" required="">
|
|
|
|
|
|
|
|
<label for="confentry" class="mt-3">Confirm New Password</label>
|
|
|
|
|
2021-12-28 12:41:26 +00:00
|
|
|
<input autocomplete="off" class="form-control" id="confentry" aria-describedby="passwordHelp"
|
2021-10-15 14:08:27 +00:00
|
|
|
type="password" name="confirm_password" required="">
|
|
|
|
|
2021-12-28 12:41:26 +00:00
|
|
|
<input autocomplete="off" class="btn btn-primary login w-100 mt-3" type="submit" value="Change password">
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2021-07-21 01:12:26 +00:00
|
|
|
{% endblock %}
|