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

@@ -104,7 +104,7 @@ class RegisterUserFromInviteForm(Form):
mobile_number = mobile_number()
password = password()
service = HiddenField('service')
email_address = email_address()
email_address = HiddenField('email_address')
class InviteUserForm(Form):