Premiere Web App

This commit is contained in:
Kepka Ludovic
2025-08-09 00:18:19 +02:00
parent 3c693a7848
commit 81937a90b6
10 changed files with 677 additions and 1 deletions

6
webapp/routes.py Normal file
View File

@@ -0,0 +1,6 @@
from flask import Flask, render_template
from webapp import webapp
@webapp.route("/")
def index():
return render_template("index.html")