Add character images and production files

This commit is contained in:
bmartin
2026-06-03 16:59:22 -04:00
commit 20dc3e2975
33 changed files with 1187 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
from flask import Flask, render_template, request
app = Flask(__name__)
@app.route("/blocked")
def blocked():
domain = request.args.get("domain", "that site")
reason = request.args.get("reason", "blocked by network policy")
return render_template("blocked.html", domain=domain, reason=reason)
if __name__ == "__main__":
app.run(host="0.0.0.0", port=5000, debug=True)