2022-02-08 11:26:20 +00:00
|
|
|
from app.models import User
|
2019-07-05 12:47:35 +00:00
|
|
|
from flask_wtf import FlaskForm
|
2022-02-08 11:26:20 +00:00
|
|
|
from wtforms import (
|
|
|
|
BooleanField,
|
|
|
|
PasswordField,
|
|
|
|
StringField,
|
|
|
|
SubmitField,
|
|
|
|
ValidationError
|
|
|
|
)
|
2022-04-12 14:11:24 +00:00
|
|
|
from wtforms.validators import DataRequired, InputRequired, Email, EqualTo, Length, Regexp
|
2022-02-08 11:26:20 +00:00
|
|
|
from . import USERNAME_REGEX
|
2019-07-05 12:47:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
class LoginForm(FlaskForm):
|
2020-02-20 08:45:38 +00:00
|
|
|
user = StringField('Email or username', validators=[DataRequired()])
|
2019-07-05 12:47:35 +00:00
|
|
|
password = PasswordField('Password', validators=[DataRequired()])
|
|
|
|
remember_me = BooleanField('Keep me logged in')
|
|
|
|
submit = SubmitField('Log In')
|
2019-07-08 09:08:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
class RegistrationForm(FlaskForm):
|
2019-07-12 15:23:11 +00:00
|
|
|
email = StringField('Email', validators=[DataRequired(), Email()])
|
2022-04-12 14:11:24 +00:00
|
|
|
username = StringField('Username',
|
2022-02-08 11:26:20 +00:00
|
|
|
validators=[
|
2022-04-12 14:11:24 +00:00
|
|
|
InputRequired(),
|
2022-04-19 09:48:14 +00:00
|
|
|
Length(1, 64),
|
2022-02-08 11:26:20 +00:00
|
|
|
Regexp(
|
|
|
|
USERNAME_REGEX,
|
|
|
|
message='Usernames must have only letters, numbers, dots or underscores' # noqa
|
|
|
|
)
|
|
|
|
]
|
2019-09-12 12:24:43 +00:00
|
|
|
)
|
2022-04-12 14:11:24 +00:00
|
|
|
password = PasswordField('Password', validators=[DataRequired(), EqualTo('password_confirmation', message='Passwords must match')])
|
|
|
|
password_confirmation = PasswordField('Password confirmation', validators=[DataRequired(), EqualTo('password', message='Passwords must match')])
|
2019-07-08 12:06:35 +00:00
|
|
|
submit = SubmitField('Register')
|
|
|
|
|
|
|
|
def validate_email(self, field):
|
|
|
|
if User.query.filter_by(email=field.data.lower()).first():
|
2022-02-08 11:26:20 +00:00
|
|
|
raise ValidationError('Email already registered')
|
2019-07-08 12:06:35 +00:00
|
|
|
|
|
|
|
def validate_username(self, field):
|
|
|
|
if User.query.filter_by(username=field.data).first():
|
2022-02-08 11:26:20 +00:00
|
|
|
raise ValidationError('Username already in use')
|
2020-02-19 15:24:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ResetPasswordForm(FlaskForm):
|
2022-04-12 14:11:24 +00:00
|
|
|
password = PasswordField('New password', validators=[DataRequired(), EqualTo('password_confirmation', message='Passwords must match')])
|
|
|
|
password_confirmation = PasswordField('Password confirmation', validators=[DataRequired(), EqualTo('password', message='Passwords must match')])
|
2020-02-19 15:24:58 +00:00
|
|
|
submit = SubmitField('Reset Password')
|
|
|
|
|
|
|
|
|
|
|
|
class ResetPasswordRequestForm(FlaskForm):
|
|
|
|
email = StringField('Email', validators=[DataRequired(), Email()])
|
|
|
|
submit = SubmitField('Reset Password')
|