diff --git a/src/registrar/templates/application_authorizing_official.html b/src/registrar/templates/application_authorizing_official.html index 7144522fa..4ad3a30b7 100644 --- a/src/registrar/templates/application_authorizing_official.html +++ b/src/registrar/templates/application_authorizing_official.html @@ -3,17 +3,14 @@ {% load widget_tweaks %} {% load static %} -{% block title %}Apply for a .gov domain – Authorizing official{% endblock %} +{% block backnav %} + {% with form_name="step__ao" %} + {{ block.super }} + {% endwith %} +{% endblock %} {% block form_content %} -{% if wizard.steps.prev %} - -{% endif %} +

Authorizing official

{{wizard.steps.current}} {{form_titles|get_item:wizard.steps.current}} @@ -24,7 +21,7 @@

All fields are required unless they are marked optional.

-
+ {{ wizard.management_form }} {% csrf_token %} @@ -49,7 +46,8 @@ - + {{ block.super }} +
{% endblock %} diff --git a/src/registrar/templates/application_form.html b/src/registrar/templates/application_form.html index c187dd4b9..6ae6f901b 100644 --- a/src/registrar/templates/application_form.html +++ b/src/registrar/templates/application_form.html @@ -1,13 +1,26 @@ {% extends 'base.html' %} +{% load static widget_tweaks %} +{% block title %}Apply for a .gov domain – {{form_titles|get_item:wizard.steps.current}}{% endblock %} {% block content %}
{% include 'application_sidebar.html' %}
-
- {% block form_content %}{% endblock %} + {% block backnav %} + {% if wizard.steps.prev %} + + {% endif %} + {% endblock %} + {% block form_content %} + + + {% endblock %}
{% endblock %}