mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-17 15:04:11 +02:00
Add aria label to anything else text field
This commit is contained in:
parent
b9ea3d8846
commit
6ff3901c91
1 changed files with 6 additions and 1 deletions
|
@ -789,7 +789,12 @@ class AnythingElseForm(BaseDeletableRegistrarForm):
|
||||||
anything_else = forms.CharField(
|
anything_else = forms.CharField(
|
||||||
required=True,
|
required=True,
|
||||||
label="Anything else?",
|
label="Anything else?",
|
||||||
widget=forms.Textarea(),
|
widget=forms.Textarea(
|
||||||
|
attrs={
|
||||||
|
"aria-label": "Is there anything else you’d like us to know about your domain request? \
|
||||||
|
Provide details below. You can enter up to 2000 characters"
|
||||||
|
}
|
||||||
|
),
|
||||||
validators=[
|
validators=[
|
||||||
MaxLengthValidator(
|
MaxLengthValidator(
|
||||||
2000,
|
2000,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue