Update app.py
Browse files
app.py
CHANGED
@@ -425,7 +425,7 @@ def login():
|
|
425 |
|
426 |
return render_template("login.html")
|
427 |
# Register Blueprints for each functionality
|
428 |
-
app.register_blueprint(menu_blueprint)
|
429 |
app.register_blueprint(cart_blueprint, url_prefix='/cart') # Register the cart blueprint with URL prefix
|
430 |
|
431 |
app.register_blueprint(order_blueprint)
|
|
|
425 |
|
426 |
return render_template("login.html")
|
427 |
# Register Blueprints for each functionality
|
428 |
+
app.register_blueprint(menu_blueprint, url_prefix='/menu')
|
429 |
app.register_blueprint(cart_blueprint, url_prefix='/cart') # Register the cart blueprint with URL prefix
|
430 |
|
431 |
app.register_blueprint(order_blueprint)
|