Merge branch 'master' of ssh://git.stuve-bamberg.de:22222/asauer/gruppenbildungsspiel

This commit is contained in:
Amma 2019-04-10 20:08:07 +02:00
commit dbd1298b2c

View File

@ -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')