hack-wpi-python/goathacks/dashboard/__init__.py
Cara Salter 26468e82ea
mega: Oh wow lots of things
- Static files
- Dashboard
- User registration
- Initial work on fixing templates
2022-12-06 10:12:31 -05:00

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")