10 lines
238 B
Python
10 lines
238 B
Python
from flask import Blueprint, render_template
|
|
from flask_login import login_required
|
|
|
|
bp = Blueprint("dashboard", __name__, url_prefix="/dashboard")
|
|
|
|
|
|
@bp.route("/")
|
|
@login_required
|
|
def home():
|
|
return render_template("dashboard.html")
|