From eb7b798e755de3473ee55150d45b024341c949c2 Mon Sep 17 00:00:00 2001 From: Nyx Tutt Date: Mon, 10 Mar 2025 00:42:22 -0500 Subject: [PATCH] Some HTML fixes JetBrains complained about --- app/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/app.py b/app/app.py index d8d6903..b322922 100644 --- a/app/app.py +++ b/app/app.py @@ -6,12 +6,12 @@ app = Flask(__name__) @app.route('/') def home(): - return render_template('index.j2', instanceName="nyxask.nixos.internal" instanceBranding="NyxAsk Testing Instance") + return render_template('index.j2', instanceName="nyxask.nixos.internal", instanceBranding="NyxAsk Testing Instance") @app.route('/auth/login/') def login(): - return render_template('login.j2', instanceName="nyxask.nixos.internal" instanceBranding="NyxAsk Testing Instance") + return render_template('login.j2', instanceName="nyxask.nixos.internal", instanceBranding="NyxAsk Testing Instance") @app.route('/assets/css/index.css')