2022-05-04 23:09:46 +00:00
{% extends "authforms.html" %}
{% block pagetitle %}{{SITE_NAME}} Password Reset{% endblock %}
{% block authtitle %}Reset your password.{% endblock %}
{% block authtext %}If there's an email address associated with your account, you can use it to recover your {{SITE_NAME}} account and change your password.{% endblock %}
{% block content %}
2022-10-29 00:52:11 +00:00
< div id = "login-form" >
2022-05-04 23:09:46 +00:00
< form action = "/forgot" method = "post" class = "mt-3" >
< label for = "username" class = "mt-3" > Username< / label >
< input autocomplete = "off" class = "form-control" id = "username" aria-describedby = "usernameHelp"
type="text" name="username" required="">
< label for = "email" class = "mt-3" > Email< / label >
2022-10-19 10:39:03 +00:00
< input type = "email" pattern = '{{EMAIL_REGEX_PATTERN}}' autocomplete = "off" class = "form-control" id = "password" aria-describedby = "passwordHelp" name = "email" required >
2022-05-04 23:09:46 +00:00
2022-06-24 02:53:31 +00:00
< input autocomplete = "off" class = "btn btn-primary login w-100 mt-3" type = "submit" onclick = "disable(this)" value = "Send recovery link" >
2022-05-04 23:09:46 +00:00
< / form >
< / div >
2022-10-19 10:39:03 +00:00
{% endblock %}