diff --git a/Flask/app.py b/Flask/app.py index 1d36293..2b46fce 100644 --- a/Flask/app.py +++ b/Flask/app.py @@ -371,7 +371,8 @@ def stats(): @app.route("/override/", methods=["POST"]) def override_post(): - print(request.form) + json = request.form.to_dict(flat=False) + print(request.form["unban"]) return(render_template("vnc_post.html")) @app.route("/override/", methods=["GET"]) diff --git a/Flask/templates/vnc_get.html b/Flask/templates/vnc_get.html index 5f6a565..c918387 100644 --- a/Flask/templates/vnc_get.html +++ b/Flask/templates/vnc_get.html @@ -35,11 +35,11 @@ function change_override(value, data) { {% for i in range(1,6) %} - - - - - + + + + + {% endfor %} diff --git a/Flask/templates/vnc_post.html b/Flask/templates/vnc_post.html index 070adc7..d168e33 100644 --- a/Flask/templates/vnc_post.html +++ b/Flask/templates/vnc_post.html @@ -9,7 +9,7 @@ {% else %} - +
diff --git a/version b/version index 2286f89..ddaa0dd 100644 --- a/version +++ b/version @@ -1 +1 @@ -v6.6.25 +v6.6.26