Skip to content

Commit 7c7abd3

Browse files
password change done html page added
1 parent 8083dd1 commit 7c7abd3

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -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+
{% endblock %}

0 commit comments

Comments
 (0)