You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
469 B
15 lines
469 B
<!-- templates/registration/password_reset_form.html -->
|
|
{% extends 'base.html' %}
|
|
|
|
{% block title %}Forgot Your Password? - Poker Rumble{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Forgot your password?</h1>
|
|
<p>Enter your email address below, and we'll email instructions for setting a new one.</p>
|
|
|
|
<form method="POST">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button class="primary_button" type="submit">Send me instructions!</button>
|
|
</form>
|
|
{% endblock %}
|
|
|