25 lines
804 B
HTML
25 lines
804 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Reset Password{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="section">
|
|
<div class="container container--narrow">
|
|
<div class="glass-card portal-card fade-in">
|
|
<h1 class="contact-form-title">Reset password</h1>
|
|
<p class="portal-intro">Enter your email and we'll send reset instructions.</p>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<div class="form-group">
|
|
<label for="id_email">Email</label>
|
|
{{ form.email }}
|
|
{{ form.email.errors }}
|
|
</div>
|
|
<button type="submit" class="btn-primary btn-submit">Send reset link</button>
|
|
</form>
|
|
<p class="portal-footer-text"><a href="{% url 'accounts:login' %}">Back to login</a></p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|