You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
445 B
Python
12 lines
445 B
Python
from wtforms import validators, fields
|
|
from flask_babel import lazy_gettext as _
|
|
import flask_wtf
|
|
|
|
class LoginForm(flask_wtf.FlaskForm):
|
|
class Meta:
|
|
csrf = False
|
|
email = fields.StringField(_('E-mail'), [validators.Email(), validators.DataRequired()])
|
|
pw = fields.PasswordField(_('Password'), [validators.DataRequired()])
|
|
submitWebmail = fields.SubmitField(_('Sign in'))
|
|
submitAdmin = fields.SubmitField(_('Sign in'))
|