diff options
| author | Karan Jayachandra <mail@karanjayachandra.com> | 2025-07-14 09:23:32 +0200 |
|---|---|---|
| committer | Karan Jayachandra <mail@karanjayachandra.com> | 2025-07-14 09:23:32 +0200 |
| commit | ec3af3f76ae1785bfb8c1dfbc69788e95fc7954d (patch) | |
| tree | d21468b10051184a5cb918d618e6b720539a3312 /app/forms.py | |
| parent | d5d64f2b1047f864811d23f19f109a6513c22a2a (diff) | |
Working app, guests implementation pending
Diffstat (limited to 'app/forms.py')
| -rw-r--r-- | app/forms.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/forms.py b/app/forms.py index 504824a..2e0929a 100644 --- a/app/forms.py +++ b/app/forms.py @@ -2,8 +2,9 @@ from flask_wtf import FlaskForm from wtforms.validators import DataRequired from wtforms import StringField, PasswordField, BooleanField, SubmitField + class LoginForm(FlaskForm): username = StringField("Username", validators=[DataRequired()]) password = PasswordField("Password", validators=[DataRequired()]) remember_me = BooleanField("Remember Me") - submit = SubmitField("Sign In")
\ No newline at end of file + submit = SubmitField("Sign In") |
