Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -492,8 +492,8 @@ def login():
|
|
492 |
|
493 |
return render_template("login.html")
|
494 |
# Register Blueprints for each functionality
|
495 |
-
app.register_blueprint(
|
496 |
-
app.register_blueprint(cart_blueprint, url_prefix='/cart') # Register the cart blueprint with URL prefix
|
497 |
|
498 |
app.register_blueprint(order_blueprint)
|
499 |
|
|
|
492 |
|
493 |
return render_template("login.html")
|
494 |
# Register Blueprints for each functionality
|
495 |
+
app.register_blueprint(menu_page)
|
496 |
+
#app.register_blueprint(cart_blueprint, url_prefix='/cart') # Register the cart blueprint with URL prefix
|
497 |
|
498 |
app.register_blueprint(order_blueprint)
|
499 |
|