diff --git a/passbook/stages/password/templates/stages/password/backend.html b/passbook/stages/password/templates/stages/password/backend.html index 74547608d5..fc313d520a 100644 --- a/passbook/stages/password/templates/stages/password/backend.html +++ b/passbook/stages/password/templates/stages/password/backend.html @@ -1,39 +1,10 @@ +{% extends 'login/form_with_user.html' %} + {% load i18n %} {% load passbook_utils %} -
-

- {% block card_title %} - {% trans title %} - {% endblock %} -

-
-
- {% block card %} -
-
- -
-
- - {{ user.username }} -
- -
-
- - {% include 'partials/form.html' %} - - {% if recovery_flow %} - {% trans 'Forgot password?' %} - {% endif %} -
- -
-
- {% endblock %} -
+{% block beneath_form %} +{% if recovery_flow %} +{% trans 'Forgot password?' %} +{% endif %} +{% endblock %}