from flask import Blueprint, render_template views = Blueprint( 'quiz_views', __name__, static_url_path='', template_folder='templates', static_folder='static' ) @views.route('/') @views.route('/home/') def home(): return render_template('/quiz/index.html') @views.route('/start/', methods = ['GET', 'POST']) def start(): from .forms import StartQuiz form = StartQuiz() return render_template('/quiz/start-quiz.html', form=form) @views.route('/privacy/') def privacy(): return f"""

Privacy Policy