Workout With Friends
Stay fit with a little motivation
 All Classes Namespaces Files Functions Variables Properties
fields.py
Go to the documentation of this file.
1 ##
2 #
3 # Custom WTForms fields.
4 #
5 
6 from wowf.lib.widgets import EmailInput
7 from wtforms.fields import TextField
8 
9 
10 ##
11 #
12 # HTML5 email input type for email fields.
13 #
14 class EmailField(TextField):
15 
16  widget = EmailInput()
17