
Basic user authantication has implimented with Flask-Login and pass word hasing with werkzeg.
5 lines
84 B
Python
5 lines
84 B
Python
from flask import Blueprint
|
|
|
|
auth = Blueprint('auth', __name__)
|
|
|
|
from . import views |