108536366: Implement register flow

Includes validation for gov.uk email address, mobile number with +44, password at least 10 char.
Form validation errors will be added to template in a later story.
User is created when form validates.
This commit is contained in:
Rebecca Law
2015-12-01 13:23:54 +00:00
parent 5879e59f34
commit 64d2cbb927
8 changed files with 120 additions and 28 deletions

View File

@@ -3,4 +3,4 @@ from flask import Blueprint
main = Blueprint('main', __name__)
from app.main.views import index, sign_in
from app.main.views import index, sign_in, register