rDrama/files/templates/login/reset_password.html

18 lines
961 B
HTML

{% extends "login/authforms.html" %}
{% block pagetitle %}{{SITE_NAME}} Password Reset{% endblock %}
{% block authtitle %}Change your password.{% endblock %}
{% block content %}
<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}}">
<label for="passentry" class="autofocus mt-3">New Password</label>
<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>
<input autocomplete="off" class="btn btn-primary login w-100 mt-4" type="submit" value="Change password">
</form>
</div>
{% endblock %}