few changes

This commit is contained in:
Fr4nz D13trich 2025-10-14 21:46:07 +02:00
parent 7e5ead8f76
commit 9e90100b9d
5 changed files with 50 additions and 21 deletions

View file

@ -2,6 +2,7 @@
from flask import Flask, render_template
import getpass
import socket
app = Flask(__name__)
@ -10,5 +11,4 @@ def index():
user=getpass.getuser()
return render_template("index.html", user=user)
app.run(host="127.0.0.1", port=5000)