Some HTML fixes JetBrains complained about

This commit is contained in:
Nyx 2025-03-10 00:42:22 -05:00
parent 822e41b394
commit eb7b798e75

View file

@ -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')