From 78047d0dc12d3f55499bffc3fa458f40e7f96b92 Mon Sep 17 00:00:00 2001 From: CocoByte Date: Thu, 13 Jun 2024 17:01:24 -0600 Subject: [PATCH] updated required fields messaging --- .../domain_request_additional_details.html | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/src/registrar/templates/domain_request_additional_details.html b/src/registrar/templates/domain_request_additional_details.html index e13d3c7ee..4c72d4c7b 100644 --- a/src/registrar/templates/domain_request_additional_details.html +++ b/src/registrar/templates/domain_request_additional_details.html @@ -1,16 +1,15 @@ {% extends 'domain_request_form.html' %} {% load static field_helpers %} -{% block form_instructions %} - These questions are required (*). -{% endblock %} + {% block form_required_fields_help_text %} -{# commented out so it does not appear at this point on this page #} +{% include "includes/required_fields.html" %} {% endblock %} {% block form_fields %} +

Are you working with a CISA regional representative on your domain request?

@@ -18,31 +17,29 @@
+ Select one (*). {% with add_class="usa-radio__input--tile" add_legend_class="usa-sr-only" %} {% input_with_errors forms.0.has_cisa_representative %} {% endwith %} {# forms.0 is a small yes/no form that toggles the visibility of "cisa representative" formset #} -
{% input_with_errors forms.1.cisa_representative_email %} {# forms.1 is a form for inputting the e-mail of a cisa representative #} -
-

Is there anything else you’d like us to know about your domain request?

+ Select one (*). {% with add_class="usa-radio__input--tile" add_legend_class="usa-sr-only" %} {% input_with_errors forms.2.has_anything_else_text %} {% endwith %} {# forms.2 is a small yes/no form that toggles the visibility of "cisa representative" formset #} -
@@ -50,6 +47,5 @@ {% input_with_errors forms.3.anything_else %} {% endwith %} {# forms.3 is a form for inputting the e-mail of a cisa representative #} -
{% endblock %}