routes.py 143 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 from flask import render_template from . import bp @bp.route('/login') def login(): return render_template('login.html', title="Login")