Skip to content

Commit

Permalink
Merge pull request #3105 from cisagov/es/2914-request-purpose-screenr…
Browse files Browse the repository at this point in the history
…eader

2914: Change screenreaderoutput of domain request purpose form [ES]
  • Loading branch information
erinysong authored Dec 5, 2024
2 parents c20aaee + 5471e20 commit f0b42fc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/registrar/forms/domain_request_wizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,12 @@ def clean_requested_domain(self):
class PurposeForm(RegistrarForm):
purpose = forms.CharField(
label="Purpose",
widget=forms.Textarea(),
widget=forms.Textarea(
attrs={
"aria-label": "What is the purpose of your requested domain? Describe how you’ll use your .gov domain. \
Will it be used for a website, email, or something else? You can enter up to 2000 characters."
}
),
validators=[
MaxLengthValidator(
2000,
Expand Down

0 comments on commit f0b42fc

Please sign in to comment.