diff --git a/benefits/templates/registration/password_change_done.html b/benefits/templates/registration/password_change_done.html new file mode 100644 index 000000000..8f33425eb --- /dev/null +++ b/benefits/templates/registration/password_change_done.html @@ -0,0 +1,66 @@ +{% extends "registration/password_change_done.html" %} +{% load static %} + +{% block extrastyle %} + + + +{% endblock extrastyle %} + +{% block branding %} + +{% endblock branding %} + +{% block usertools %} + {% if has_permission %} +
+ {% block welcome-msg %} + + Welcome, + {% firstof user.get_short_name user.get_username %}. + + {% endblock welcome-msg %} + {% block userlinks %} + {% if user.is_active and user.is_staff %} + {% url 'django-admindocs-docroot' as docsroot %} + {% if docsroot %}Documentation /{% endif %} + {% endif %} + {% if user.has_usable_password %} + Change password / + {% endif %} + +
+ {% csrf_token %} + +
+ {% endblock userlinks %} +
+ {% endif %} +{% endblock usertools %} + +{% block nav-breadcrumbs %} +{% endblock nav-breadcrumbs %} + +{% block nav-sidebar %} +{% endblock nav-sidebar %} + +{% block content %} + {{ block.super }} + +
+
+ Back to dashboard +
+
+{% endblock content %} diff --git a/benefits/templates/registration/password_change_form.html b/benefits/templates/registration/password_change_form.html new file mode 100644 index 000000000..43843299c --- /dev/null +++ b/benefits/templates/registration/password_change_form.html @@ -0,0 +1,56 @@ +{% extends "registration/password_change_form.html" %} +{% load static %} + +{% block extrastyle %} + + + +{% endblock extrastyle %} + +{% block branding %} + +{% endblock branding %} + +{% block usertools %} + {% if has_permission %} +
+ {% block welcome-msg %} + + Welcome, + {% firstof user.get_short_name user.get_username %}. + + {% endblock welcome-msg %} + {% block userlinks %} + {% if user.is_active and user.is_staff %} + {% url 'django-admindocs-docroot' as docsroot %} + {% if docsroot %}Documentation /{% endif %} + {% endif %} + {% if user.has_usable_password %} + Change password / + {% endif %} + +
+ {% csrf_token %} + +
+ {% endblock userlinks %} +
+ {% endif %} +{% endblock usertools %} + +{% block nav-breadcrumbs %} +{% endblock nav-breadcrumbs %} + +{% block nav-sidebar %} +{% endblock nav-sidebar %}