Revert the disabled email field on the register-invited-user page, the email address is not being submitted on the form when registering

This commit is contained in:
Rebecca Law
2016-03-08 16:29:05 +00:00
parent d3825b253a
commit 4678a12d33
3 changed files with 4 additions and 4 deletions

View File

@@ -12,12 +12,12 @@ Create an account GOV.UK Notify
<div class="column-two-thirds">
<h1 class="heading-large">Create an account</h1>
<form method="post" autocomplete="nope">
{{ textbox(form.email_address, width='3-4', disabled=True ) }}
{{ textbox(form.name, width='3-4') }}
{{ textbox(form.mobile_number, width='3-4') }}
{{ textbox(form.password, hint="Your password must have at least 10 characters", width='3-4') }}
{{ page_footer("Continue") }}
{{form.service}}
{{form.email_address}}
</form>
</div>
</div>