mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
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.
7 lines
118 B
Python
7 lines
118 B
Python
from flask import Blueprint
|
|
|
|
main = Blueprint('main', __name__)
|
|
|
|
|
|
from app.main.views import index, sign_in, register
|