13 lines
203 B
HTML
13 lines
203 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<article>
|
|
<section>
|
|
<p>
|
|
Password has been changed.
|
|
<a href="{% url 'login' %}">Log in</a>
|
|
</p>
|
|
</section>
|
|
</article>
|
|
{% endblock %}
|