ui chnages of mobile viwe respo and adding login page logo

This commit is contained in:
2026-01-10 16:49:46 +05:30
parent 5afe8e7096
commit 64fbb91199
8 changed files with 176 additions and 50 deletions

View File

@@ -29,7 +29,7 @@
# return app
from flask import Flask
from flask import Flask, redirect, url_for
from app.config import Config
from app.services.db_service import db
@@ -42,10 +42,14 @@ def create_app():
# Register blueprints
register_blueprints(app)
# Register error handlers
register_error_handlers(app)
# ROOT → LOGIN
@app.route("/")
def index():
return redirect(url_for("auth.login"))
return app