Initial Login functionality

This commit is contained in:
Josako
2024-04-24 11:58:45 +02:00
parent ca77f55a7f
commit c9b9828e7b
1101 changed files with 331963 additions and 0 deletions

View File

@@ -35,6 +35,8 @@ def register_extensions(app):
def register_blueprints(app):
from .views.user_views import user_bp
app.register_blueprint(user_bp)
from .views.auth_views import auth_bp
app.register_blueprint(auth_bp)
def register_api(app):