summaryrefslogtreecommitdiff
path: root/wk9/lect/hello/app.py
blob: 78980117d26d2a51f1fa871a91a6f0e0fb0eebd8 (plain)
1
2
3
4
5
6
7
8
from flask import Flask, render_template, request

app = Flask(__name__)

@app.route("/")
def index():
    name = request.args["name"]
    return render_template("index.html", placeholder=name)