diff --git a/odp/identity/forms.py b/odp/identity/forms.py index f6b9341b..ca4b3ea2 100644 --- a/odp/identity/forms.py +++ b/odp/identity/forms.py @@ -4,6 +4,10 @@ class SignupForm(FlaskForm): + name = StringField( + label='Full name', + validators=[input_required()], + ) email = StringField( label='Email address', filters=[lambda s: s.lower() if s else s], diff --git a/odp/identity/templates/signup.html b/odp/identity/templates/signup.html index 9b52db44..abac1934 100644 --- a/odp/identity/templates/signup.html +++ b/odp/identity/templates/signup.html @@ -8,6 +8,7 @@ {% block content %}