""" form.py a flask "blueprint" that displays the initial form page. """ from flask import Blueprint, render_template bp = Blueprint("form", __name__) @bp.route('/form', methods=('GET',)) def form(): return render_template('form.html')