Workout With Friends
Stay fit with a little motivation
 All Classes Namespaces Files Functions Variables Properties
widgets.py
Go to the documentation of this file.
1 ##
2 #
3 # Custom WTForms widgets.
4 #
5 
6 from wtforms.widgets import Input
7 
8 
9 class EmailInput(Input):
10 
11  input_type = 'email'
12