diff --git a/core/__pycache__/app.cpython-310.pyc b/core/__pycache__/app.cpython-310.pyc index 80ea81f..26ad86b 100644 Binary files a/core/__pycache__/app.cpython-310.pyc and b/core/__pycache__/app.cpython-310.pyc differ diff --git a/core/__pycache__/forms.cpython-310.pyc b/core/__pycache__/forms.cpython-310.pyc new file mode 100644 index 0000000..3832bca Binary files /dev/null and b/core/__pycache__/forms.cpython-310.pyc differ diff --git a/core/app.py b/core/app.py index dc1154a..8c74c00 100644 --- a/core/app.py +++ b/core/app.py @@ -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" @@ -61,7 +61,4 @@ def login(): password = form.username.data # Compare with database - return - -if __name__ == '__main__': - app.run(debug=True) \ No newline at end of file + return \ No newline at end of file