Nouvelle version du dimanche

This commit is contained in:
Alban
2026-03-08 13:25:06 +01:00
parent 582179ea9a
commit b71ae96310
5 changed files with 72 additions and 11 deletions

3
app.py
View File

@@ -7,7 +7,8 @@ app = Flask(__name__) # crée l'application Flask
@app.route("/") # URL racine : http://localhost:5000/
def index():
return render_template("index.html", Identifiant="Alban")
return render_template("user_search.html", display= "none")
#return render_template("index.html", Identifiant="Alban")
@app.route("/index2/<Identifiant>") # URL racine : http://localhost:5000/
def index2(Identifiant):