Changed routes

Please enter the commit message for your changes. Lines starting
This commit is contained in:
Amma 2019-04-10 20:15:16 +02:00
parent dbd1298b2c
commit 3ee7d5ac7d

View File

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