add register, login and main page with basic functionality

This commit is contained in:
2026-02-24 17:07:18 +01:00
parent f5ac44886b
commit 81ca96ed77
9 changed files with 162 additions and 3 deletions
+7
View File
@@ -0,0 +1,7 @@
from flask import Blueprint, render_template
main_bp = Blueprint("main", __name__)
@main_bp.route("/", methods=["GET", "POST"])
def main():
return render_template("main.html")