We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8083dd1 commit 7c7abd3Copy full SHA for 7c7abd3
templates/registration/password_change_done.html
@@ -0,0 +1,15 @@
1
+{% extends 'base.html' %}
2
+{% load crispy_forms_tags %}
3
+{% block title %}Changed Password successful{% endblock %}
4
+
5
+{% block breadcrumb %}
6
+ <li class="breadcrumb-item active"><a href="{% url 'password_change' %}"></a>Change password</li>
7
+ <li class="breadcrumb-item active">Success</li>
8
+{% endblock %}
9
10
+{% block content %}
11
+<div class="alert alert-success" role="alert">
12
+ <strong>Success!!</strong>Your password has been changed.
13
+</div>
14
+<a href="{% url 'home' %}" class="btn btn-secondary">Return to home page</a>
15
0 commit comments