2021-07-21 01:12:26 +00:00
{% extends "authforms.html" %}
2021-08-19 05:14:52 +00:00
{% block pagetitle %}{{'SITE_NAME' | app_config}} Password Reset{% endblock %}
2021-07-21 01:12:26 +00:00
{% block authtitle %}Reset your password.{% endblock %}
2021-08-19 05:14:52 +00:00
{% block authtext %}If there's an email address associated with your account, you can use it to recover your {{'SITE_NAME' | app_config}} account and change your password.{% endblock %}
2021-07-21 01:12:26 +00:00
{% block content %}
< div id = "login-form" class = "" >
< form action = "/forgot" method = "post" class = "mt-3" >
2021-09-03 17:03:25 +00:00
< label for = "username" class = "mt-3" > Username< / label >
2021-07-21 01:12:26 +00:00
< input class = "form-control" id = "username" aria-describedby = "usernameHelp"
type="text" name="username" required="">
2021-09-03 17:03:25 +00:00
< label for = "email" class = "mt-3" > Email< / label >
2021-07-21 01:12:26 +00:00
< input class = "form-control" id = "password" aria-describedby = "passwordHelp"
type="email" name="email" required="">
< input class = "btn btn-primary login w-100 mt-3" type = "submit" value = "Send recovery link" >
< / form >
< / div >
{% endblock %}