DSatishchandra commited on
Commit
8a35f9b
·
verified ·
1 Parent(s): f553154

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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(menu_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