Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions transactional_licence_form/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ class ContactForm(FCLForm):
contact_email = fields.FCLEmailField(
label="2. Contact Email address",
max_length=50,
# NOTE: this is a temporary workaround as there is a bug in crispy-forms-gds where they forgot to apply error styling to email inputs
widget=forms.TextInput(attrs={"type": "email"}),
)
# NOTE: please see comment in transactional_lcence_form.js if changing the wording / order of the options here.
alternative_contact = fields.FCLChoiceField(
Expand Down
Loading