mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
9 lines
298 B
HTML
9 lines
298 B
HTML
{% extends "registration/registration_base.html" %}
|
|
{% block title %}Password reset complete{% endblock %}
|
|
{% block content %}
|
|
<div class="page-header">
|
|
<h1>Password Reset Complete</h1>
|
|
</div>
|
|
<p>Your password has been reset! You may now <a href="{{ login_url }}">log in</a>.</p>
|
|
{% endblock %}
|