This commit is contained in:
2025-09-05 14:43:05 +02:00
parent b723bb1285
commit bc3df4ce1a
5 changed files with 47 additions and 2 deletions

4
app.py
View File

@@ -1,11 +1,11 @@
from flask import Flask
from flask import Flask, render_template, request
app = Flask(__name__)
@app.route('/')
def hello_world(): # put application's code here
return 'Hello World!'
return render_template("index.html")
if __name__ == '__main__':