15 lines
400 B
Python
15 lines
400 B
Python
from flask import Flask, render_template
|
|
app = Flask(__name__)
|
|
|
|
@app.route('/')
|
|
def index():
|
|
return render_template('index.html', title='Test', text='Hallo, Fooboar')
|
|
|
|
@app.route('/form')
|
|
def form():
|
|
return render_template('form.html', title='Test', text='Hallo, Fooboar')
|
|
|
|
@app.route('/result')
|
|
def result():
|
|
return render_template('result.html', title='Test', text='Hallo, Fooboar')
|