diff options
Diffstat (limited to 'wk9/lect/froshims/app.py')
-rw-r--r-- | wk9/lect/froshims/app.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/wk9/lect/froshims/app.py b/wk9/lect/froshims/app.py index a60a291..caf1e5f 100644 --- a/wk9/lect/froshims/app.py +++ b/wk9/lect/froshims/app.py @@ -13,4 +13,7 @@ def index(): def register(): if not request.form.get("name") or request.form.get("sport") not in SPORTS: return render_template("failure.html") + for sport in request.form.getall("sport"): + if sport not in SPORTS: + return render_template("failure.html") return render_template("success.html") |