diff --git a/gruppenbildungsspiel.py b/gruppenbildungsspiel.py index 7397869..8100cf7 100644 --- a/gruppenbildungsspiel.py +++ b/gruppenbildungsspiel.py @@ -5,10 +5,10 @@ app = Flask(__name__) def index(): return render_template('index.html', title='Test', text='Hallo, Fooboar') -@app.route('/') +@app.route('/form') def form(): return render_template('form.html', title='Test', text='Hallo, Fooboar') -@app.route('/') +@app.route('/result') def result(): return render_template('result.html', title='Test', text='Hallo, Fooboar')