Skip to content

Commit

Permalink
[Update📢] register auth blueprint
Browse files Browse the repository at this point in the history
  • Loading branch information
[esekyi] committed Aug 24, 2024
1 parent 439a1bb commit 1c469d5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ def create_app():
login_manager.init_app(app)

# register blueprint
from app.routes import user_routes, recipe_routes
from app.routes import user_routes, recipe_routes, auth_routes
app.register_blueprint(user_routes.bp)
app.register_blueprint(recipe_routes.bp)
app.register_blueprint(auth_routes.auth_bp)


return app
Expand Down
Empty file added app/templates/login.html
Empty file.
Empty file added app/templates/register.html
Empty file.

0 comments on commit 1c469d5

Please sign in to comment.