portier/templates/registration/password_reset_form.html

23 lines
627 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends 'base.html' %}
{% load bootstrap4 %}
{% block 'content' %}
<h1>Password Reset</h1>
<div class="row">
<div class="col-sm border-right">
<form method="post">
{% csrf_token %}
{% bootstrap_form form %}
{% buttons %}
<button type="submit" class="btn btn-primary" value="login">
Submit
</button>
{% endbuttons %}
<input type="hidden" name="next" value="{{ next }}">
</form>
</div>
<div class="col-sm">
<p>Forgotten your password? Enter your email address, and well email instructions for setting a new one.</p>
</div>
</div>
{% endblock %}