Merge branch 'development' of https://github.com/StefBuwalda/WebTech into development

This commit is contained in:
2025-04-01 12:08:59 +02:00
5 changed files with 20 additions and 26 deletions

5
run.py
View File

@@ -12,6 +12,11 @@ def index():
# Return HTML content
return "<h1>This is the default page</h1>"
@app.route("/dashboard")
def dashboard():
# Return Dashboard.html
return render_template("dashboard.html")
@app.route("/forms", methods=["GET", "POST"])
def forms():