rDrama/files/templates/login/forgot_password.html

14 lines
768 B
HTML

{% extends "login/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 %}
<div id="login-form">
<form action="/forgot" method="post" class="mt-3">
<label for="username_or_email" class="autofocus mt-3">Username or Email Address</label>
<input id="username_or_email" autocomplete="off" class="form-control" name="username_or_email" required>
<input autocomplete="off" class="btn btn-primary login w-100 mt-4" type="submit" value="Send recovery link">
</form>
</div>
{% endblock %}