9 lines
253 B
HTML
9 lines
253 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="auth-container">
|
|
<h2>Password changed</h2>
|
|
<p>Your password has been changed successfully.</p>
|
|
<p><a href="{% url 'accounts:profile' %}">Back to profile</a></p>
|
|
</div>
|
|
{% endblock %} |