rDrama/files/templates/reset_password.html
Aevann1 80ac8b5bb4 Revert "gfgf"
This reverts commit 5c7d96660d.
2021-09-03 19:03:25 +02:00

33 lines
No EOL
1.1 KiB
HTML

{% extends "authforms.html" %}
{% block pagetitle %}{{'SITE_NAME' | app_config}} Password Reset{% endblock %}
{% block authtitle %}Change your password.{% endblock %}
{% block content %}
<div id="login-form" class="">
<form action="/reset" method="post" class="mt-3">
<input type="hidden" name="time" value="{{time}}">
<input type="hidden" name="user_id" value="{{v.id}}">
<input type="hidden" name="token" value="{{token}}">
<label for="passentry" class="mt-3">New Password</label>
<input class="form-control" id="passentry" aria-describedby="usernameHelp"
type="password" name="password" required="">
<label for="confentry" class="mt-3">Confirm New Password</label>
<input class="form-control" id="confentry" aria-describedby="passwordHelp"
type="password" name="confirm_password" required="">
<input class="btn btn-primary login w-100 mt-3" type="submit" value="Change password">
</form>
</div>
{% endblock %}