23 lines
627 B
HTML
23 lines
627 B
HTML
|
{% 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 we’ll email instructions for setting a new one.</p>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
{% endblock %}
|