This commit is contained in:
amammad
2023-06-29 20:55:51 +10:00
parent e3e0307db7
commit 7a17b99c17
15 changed files with 484 additions and 251 deletions

View File

@@ -2,10 +2,8 @@ from flask import Flask, session
from secrets import token_hex
app = Flask(__name__)
SECRET_KEY = 'CHANGEME'
if not SECRET_KEY:
SECRET_KEY = token_hex(16)
SECRET_KEY = token_hex(16)
@app.route('/')