Skip to content

Commit acb6bf7

Browse files
committed
feat: Redesign password reset done page
1 parent 4e90d5c commit acb6bf7

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed
360 KB
Loading
Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
{% extends "account/base.html" %}
2-
{% load i18n %}
2+
{% load static %}
33

4-
{% block head_title %}{% trans "Change Password" %}{% endblock %}
4+
{% block head_title %}Change Password{% endblock %}
55

6-
{% block content_header %}{% trans "Change Password" %}{% endblock %}
6+
{% block header %}{% endblock %}
77

88
{% block content %}
9-
<p>{% trans 'Your password is now changed.' %}</p>
9+
<div class="w-[40rem] flex flex-col items-center justify-center mx-auto p-8 font-common shadow-sign-content rounded-lg">
10+
<h3>Your password is now changed</h3>
11+
<img class="w-[60%]" src="{% static 'img/password_reset_done.gif' %}">
12+
<p>Please login with your new password.</p>
13+
<a class="button" href="{% url 'account_login' %}">Continue Login</a>
14+
</div>
1015
{% endblock %}
16+
{% block footer %}{% endblock %}

0 commit comments

Comments
 (0)