Skip to content
Snippets Groups Projects
Commit 1b4bdc81 authored by Michael Drury's avatar Michael Drury
Browse files

fixed error with email regex which didnt require a .

parent 0c209225
No related branches found
No related tags found
No related merge requests found
......@@ -57,4 +57,4 @@ class emailChangeForm(FlaskForm):
class mobileChangeForm(FlaskForm):
new_mobile = StringField('Enter a new mobile:', validators=[Regexp(regex='^[+-]?[0-9]+$', message = 'only integers allowed'), input_required(), Length(11, 11)])
submit2 = SubmitField('Submit')
\ No newline at end of file
submit2 = SubmitField('Submit')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment