viveksantayana
43b5973dbe
Basic CRUD operations for managing registered admin users Encrypted personal information Still missing sections on managing tests and results Also missing dashboards/index/category landing pages
8 lines
139 B
Python
8 lines
139 B
Python
from flask import Blueprint
|
|
|
|
auth = Blueprint(
|
|
'quiz_auth',
|
|
__name__,
|
|
template_folder='templates',
|
|
static_folder='static'
|
|
) |