|
|
|
@ -1,4 +1,6 @@
|
|
|
|
|
from flask_wtf import FlaskForm
|
|
|
|
|
from flask_wtf.file import FileField, FileAllowed
|
|
|
|
|
from flask_login import current_user #type: ignore
|
|
|
|
|
from wtforms import StringField, PasswordField, SubmitField, BooleanField
|
|
|
|
|
from wtforms.validators import DataRequired, Length, Email, EqualTo, ValidationError
|
|
|
|
|
from blogapp.models import User
|
|
|
|
@ -6,7 +8,7 @@ from blogapp.models import User
|
|
|
|
|
|
|
|
|
|
class RegistrationForm(FlaskForm):
|
|
|
|
|
username = StringField('Username',
|
|
|
|
|
validators=[DataRequired(), Length(min=2, max=20)])
|
|
|
|
|
validators=[DataRequired(), Length(min=4, max=20)])
|
|
|
|
|
email = StringField('Email',
|
|
|
|
|
validators=[DataRequired(), Email()])
|
|
|
|
|
|
|
|
|
@ -31,4 +33,25 @@ class LoginForm(FlaskForm):
|
|
|
|
|
|
|
|
|
|
password = PasswordField('Password' , validators=[DataRequired()])
|
|
|
|
|
remember = BooleanField('Remember Me')
|
|
|
|
|
submit =SubmitField('Login')
|
|
|
|
|
submit =SubmitField('Login')
|
|
|
|
|
|
|
|
|
|
class UpdateAccountForm(FlaskForm):
|
|
|
|
|
username = StringField('Username',
|
|
|
|
|
validators=[DataRequired(), Length(min=4, max=20)])
|
|
|
|
|
email = StringField('Email',
|
|
|
|
|
validators=[DataRequired(), Email()])
|
|
|
|
|
|
|
|
|
|
picture = FileField('Update Profile Picture', validators=[FileAllowed(['jpg','png','jpeg'])])
|
|
|
|
|
submit =SubmitField('Update')
|
|
|
|
|
|
|
|
|
|
def validate_username(self, username):
|
|
|
|
|
if username.data != current_user.username:
|
|
|
|
|
user = User.query.filter_by(username=username.data).first()
|
|
|
|
|
if user:
|
|
|
|
|
raise ValidationError('That username is taken. Please choose a different one')
|
|
|
|
|
|
|
|
|
|
def validate_email(self, email):
|
|
|
|
|
if email.data != current_user.email:
|
|
|
|
|
user = User.query.filter_by(email=email.data).first()
|
|
|
|
|
if user:
|
|
|
|
|
raise ValidationError('That email is taken. Please choose a different one')
|
|
|
|
|