diff --git a/src/registrar/forms/application_wizard.py b/src/registrar/forms/application_wizard.py index 7e88b49da..a862afc6c 100644 --- a/src/registrar/forms/application_wizard.py +++ b/src/registrar/forms/application_wizard.py @@ -638,4 +638,3 @@ class RequirementsForm(RegistrarForm): "required": ("Check the box if you read and agree to the requirements for operating .gov domains.") }, ) - diff --git a/src/registrar/forms/domain.py b/src/registrar/forms/domain.py index e6cdba1b4..44d752199 100644 --- a/src/registrar/forms/domain.py +++ b/src/registrar/forms/domain.py @@ -153,7 +153,7 @@ class ContactForm(forms.ModelForm): for field_name in self.required: self.fields[field_name].required = True - + # Set custom form label self.fields["middle_name"].label = "Middle name (optional)" @@ -195,7 +195,6 @@ class AuthorizingOfficialContactForm(ContactForm): class DomainSecurityEmailForm(forms.Form): """Form for adding or editing a security email to a domain.""" - security_email = forms.EmailField( label="Security email (optional)", required=False, @@ -205,7 +204,6 @@ class DomainSecurityEmailForm(forms.Form): ) - class DomainOrgNameAddressForm(forms.ModelForm): """Form for updating the organization name and mailing address."""