diff --git a/gruppenbildungsspiel.py b/gruppenbildungsspiel.py index 68c31c8..7397869 100644 --- a/gruppenbildungsspiel.py +++ b/gruppenbildungsspiel.py @@ -4,3 +4,11 @@ app = Flask(__name__) @app.route('/') def index(): return render_template('index.html', title='Test', text='Hallo, Fooboar') + +@app.route('/') +def form(): + return render_template('form.html', title='Test', text='Hallo, Fooboar') + +@app.route('/') +def result(): + return render_template('result.html', title='Test', text='Hallo, Fooboar')