Fixed bug where forms module did not exist

This commit is contained in:
white
2025-01-15 15:55:40 +00:00
parent 462a5037cd
commit 3a2dd010c4
3 changed files with 2 additions and 5 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -1,7 +1,7 @@
from flask import Flask, render_template, session, request, url_for, redirect, g
from werkzeug.security import generate_password_hash, check_password_hash
from functools import wraps
from forms import SignupForm, LoginForm
from core.forms import SignupForm, LoginForm
app = Flask(__name__, template_folder="../ui/templates/")
app.config["SECRET_KEY"] = "j9573-4952-9029-1034"
@@ -62,6 +62,3 @@ def login():
# Compare with database
return
if __name__ == '__main__':
app.run(debug=True)