diff --git a/src/registrar/templates/application_dotgov_domain.html b/src/registrar/templates/application_dotgov_domain.html index 2c6900e18..91a68fcbf 100644 --- a/src/registrar/templates/application_dotgov_domain.html +++ b/src/registrar/templates/application_dotgov_domain.html @@ -38,7 +38,7 @@
-

What .gov domain do you want?

+

What .gov domain do you want? *

After you enter your domain, we’ll make sure it’s @@ -46,7 +46,7 @@ these initial checks, we’ll verify that it meets all of our requirements once you complete and submit the rest of this form.

-

This question is required.

+

* This question is required.

{% with attr_aria_describedby="domain_instructions domain_instructions2" %} {# attr_validate / validate="domain" invokes code in get-gov.js #} diff --git a/src/registrar/templates/application_org_federal.html b/src/registrar/templates/application_org_federal.html index caaf53757..5016e698a 100644 --- a/src/registrar/templates/application_org_federal.html +++ b/src/registrar/templates/application_org_federal.html @@ -3,14 +3,12 @@ {% block form_instructions %}

- Which federal branch is your organization in? + Which federal branch is your organization in? *

- -

This question is required.

{% endblock %} {% block form_required_fields_help_text %} -{# commented out so it does not appear on this page #} +

* This question is required.

{% endblock %} diff --git a/src/registrar/templates/application_org_type.html b/src/registrar/templates/application_org_type.html index 1cc6eed4b..8bea8986a 100644 --- a/src/registrar/templates/application_org_type.html +++ b/src/registrar/templates/application_org_type.html @@ -3,14 +3,13 @@ {% block form_instructions %}

- What kind of U.S.-based government organization do you represent? + What kind of U.S.-based government organization do you represent? *

-

This question is required.

{% endblock %} {% block form_required_fields_help_text %} -{# commented out so it does not appear on this page #} +

* This question is required.

{% endblock %} diff --git a/src/registrar/templates/application_other_contacts.html b/src/registrar/templates/application_other_contacts.html index fc41a8385..fef815364 100644 --- a/src/registrar/templates/application_other_contacts.html +++ b/src/registrar/templates/application_other_contacts.html @@ -7,6 +7,11 @@

We’ll email these contacts to let them know that you made this request.

{% endblock %} +{% block form_required_fields_help_text %} +{# there are no required fields on this page so don't show this #} +{% endblock %} + + {% block form_fields %} {{ forms.0.management_form }} diff --git a/src/registrar/templates/application_purpose.html b/src/registrar/templates/application_purpose.html index e1a9f4753..3b7aed484 100644 --- a/src/registrar/templates/application_purpose.html +++ b/src/registrar/templates/application_purpose.html @@ -11,11 +11,10 @@ another top-level domain (like .com or .org)? Read about activities that are prohibited on .gov domains.

-

This question is required.

{% endblock %} {% block form_required_fields_help_text %} -{# commented out so it does not appear on this page #} +

* This question is required.

{% endblock %} diff --git a/src/registrar/templates/application_review.html b/src/registrar/templates/application_review.html index 0808b2c39..8f139e4cc 100644 --- a/src/registrar/templates/application_review.html +++ b/src/registrar/templates/application_review.html @@ -1,6 +1,10 @@ {% extends 'application_form.html' %} {% load static url_helpers %} +{% block form_required_fields_help_text %} +{# there are no required fields on this page so don't show this #} +{% endblock %} + {% block form_fields %} {% for step in steps.all|slice:":-1" %}
@@ -104,4 +108,4 @@
{% endfor %} -{% endblock %} \ No newline at end of file +{% endblock %}