init commit

This commit is contained in:
2025-01-23 00:19:58 +03:00
commit 4e3a3fa2a4
15 changed files with 312 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def index():
return render_template('index.html')
@app.route("/sql-injection")
def sql():
return render_template('sql-injection.html')
@app.route("/found-me")
def found():
return render_template('found.html')
@app.route("/decode-me")
def decode():
return render_template('decode.html')
app.run()