2022-11-21 08:52:22 +00:00
|
|
|
{% extends "login/authforms.html" %}
|
|
|
|
{% block pagetitle %}{{SITE_NAME}} Password Reset{% endblock %}
|
|
|
|
{% block authtitle %}Change your password.{% endblock %}
|
|
|
|
{% block content %}
|
2023-10-29 12:51:00 +00:00
|
|
|
<div id="login-form">
|
|
|
|
<form action="/reset" method="post" class="mt-3">
|
|
|
|
<input hidden name="time" value="{{time}}">
|
|
|
|
<input hidden name="user_id" value="{{v.id}}">
|
|
|
|
<input hidden name="token" value="{{token}}">
|
2024-02-14 09:57:05 +00:00
|
|
|
<label for="passentry" class="autofocus mt-3">New Password</label>
|
2023-10-29 12:51:00 +00:00
|
|
|
<input autocomplete="off" class="form-control" id="passentry" type="password" minlength="8" maxlength="100" name="password" required>
|
|
|
|
<label for="confentry" class="mt-3">Confirm New Password</label>
|
|
|
|
<input autocomplete="off" class="form-control" id="confentry" type="password" minlength="8" maxlength="100" name="confirm_password" required>
|
2024-02-14 09:55:27 +00:00
|
|
|
<input autocomplete="off" class="btn btn-primary login w-100 mt-4" type="submit" value="Change password">
|
2023-10-29 12:51:00 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
2022-11-21 08:52:22 +00:00
|
|
|
{% endblock %}
|