
This will add new function to reset user password and some higher magical lore to the software.
51 lines
2.5 KiB
Python
51 lines
2.5 KiB
Python
from flask_wtf import Form
|
|
from flask import flash
|
|
from wtforms import StringField, PasswordField, BooleanField, SubmitField, ValidationError
|
|
from wtforms.validators import Required, Length, Email, Regexp, EqualTo
|
|
from ..models import User
|
|
|
|
class LoginForm(Form):
|
|
email = StringField('Email', validators=[Required(), Length(1, 128),
|
|
Email()])
|
|
password = PasswordField('Password', validators=[Required()])
|
|
remember_me = BooleanField('Keep me logged in')
|
|
submit = SubmitField('Log In')
|
|
|
|
class RegistrationForm(Form):
|
|
email = StringField('Email', validators=[Required(), Length(1, 128),
|
|
Email()])
|
|
username = StringField('Username', validators=[
|
|
Required(), Length(1, 64), Regexp('^[A-Za-z][A-Za-z0-9_.]*$', 0,
|
|
'Usernames must have only letters, '
|
|
'numbers, dots or underscores')])
|
|
full_name = StringField('Full name', validators=[Required(), Length(1, 255)])
|
|
password = PasswordField('Password', validators=[
|
|
Required(), EqualTo('password2', message='Passwords must match.')])
|
|
password2 = PasswordField('Confirm password', validators=[Required()])
|
|
terms = BooleanField('I agree to the terms', validators=[Required(message='You must agree terms.')])
|
|
submit = SubmitField('Register')
|
|
|
|
def validate_email(self, field):
|
|
if User.query.filter_by(email=field.data).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.')
|
|
|
|
class PasswordResetRequestForm(Form):
|
|
email = StringField('Email', validators=[Required(), Length(1, 64),
|
|
Email()])
|
|
submit = SubmitField('Reset Password')
|
|
|
|
class PasswordResetForm(Form):
|
|
email = StringField('Email', validators=[Required(), Length(1, 64),
|
|
Email()])
|
|
password = PasswordField('New Password', validators=[
|
|
Required(), EqualTo('password2', message='Passwords must match')])
|
|
password2 = PasswordField('Confirm password', validators=[Required()])
|
|
submit = SubmitField('Reset Password')
|
|
|
|
def validate_email(self, field):
|
|
if User.query.filter_by(email=field.data).first() is None:
|
|
raise ValidationError('Unknown email address.') |