Update key personnel language

This commit is contained in:
Seamus Johnston 2023-02-06 08:27:58 -06:00
parent 2b902be00f
commit ffedcac439
No known key found for this signature in database
GPG key ID: 2F21225985069105
5 changed files with 51 additions and 3 deletions

View file

@ -660,6 +660,18 @@ OtherContactsFormSet = forms.formset_factory(
)
class NoOtherContactsForm(RegistrarForm):
no_other_contacts_rationale = forms.CharField(
required=False,
# label has to end in a space to get the label_suffix to show
label=(
"If you cant provide other contacts for your organization,"
" please explain why."
),
widget=forms.Textarea(),
)
class SecurityEmailForm(RegistrarForm):
security_email = forms.EmailField(
required=False,