summaryrefslogtreecommitdiff
path: root/app/forms.py
diff options
context:
space:
mode:
authorKaran Jayachandra <mail@karanjayachandra.com>2025-07-14 12:59:31 +0200
committerKaran Jayachandra <mail@karanjayachandra.com>2025-07-14 12:59:31 +0200
commite5316d69dad8e156bd40e1f0204bb34dcd062fb7 (patch)
tree7af89ffd613db6c60666da9877667d07c188f1a9 /app/forms.py
parent729203409fb73fdbac19b8af9d647883a5ac96b0 (diff)
Transitioned to UV
Diffstat (limited to 'app/forms.py')
-rw-r--r--app/forms.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/app/forms.py b/app/forms.py
deleted file mode 100644
index 2e0929a..0000000
--- a/app/forms.py
+++ /dev/null
@@ -1,10 +0,0 @@
-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")