Remove HTML5 validation

This commit:
- uses WTForms email fields wherever we collect email addresses
- makes sure we don’t let the default HTML5 form validation get trigged
  (using `novalidate`[1])

We don’t want to use the default validation because:
- it looks out of place
- it’s not well supported by assistive technology

1. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form#attr-novalidate
This commit is contained in:
Chris Hill-Scott
2017-10-16 16:40:03 +01:00
parent 7809a70cf3
commit 7fc2a5b134
8 changed files with 8 additions and 8 deletions

View File

@@ -14,7 +14,7 @@
</h1>
<div class="grid-row">
<form method="post" class="column-three-quarters">
<form method="post" class="column-three-quarters" novalidate>
{{ textbox(form.email_address, width='1-1', safe_error_message=True) }}