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