Last active
November 10, 2019 12:15
-
-
Save okomarov/602f6767e66723bfa430fea8aa3b27a3 to your computer and use it in GitHub Desktop.
viral queue email form
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class EmailForm(FlaskForm): | |
email = EmailField('Email', validators=[DataRequired(), Email()]) | |
submit = SubmitField('Get early access') | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment