You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
715 B
23 lines
715 B
"""Reset Password Form form to reset a users PasswordField."""
|
|
|
|
from flask_wtf import FlaskForm
|
|
from wtforms import PasswordField, SubmitField, validators
|
|
from wtforms.validators import EqualTo, Length
|
|
|
|
|
|
class ResetPasswordForm(FlaskForm):
|
|
"""ResetPassword for distribusi-verse form class"""
|
|
|
|
password = PasswordField(
|
|
"New password:",
|
|
validators=[validators.InputRequired(), Length(12, 72)],
|
|
)
|
|
confirmpassword = PasswordField(
|
|
"Confirm your password:",
|
|
validators=[
|
|
validators.InputRequired(),
|
|
Length(12, 72),
|
|
EqualTo("password", message="Passwords must match !"),
|
|
],
|
|
)
|
|
submit = SubmitField("Reset your password")
|
|
|