summaryrefslogtreecommitdiff
path: root/wk9/lect/froshims/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'wk9/lect/froshims/templates/index.html')
-rw-r--r--wk9/lect/froshims/templates/index.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/wk9/lect/froshims/templates/index.html b/wk9/lect/froshims/templates/index.html
new file mode 100644
index 0000000..2a80486
--- /dev/null
+++ b/wk9/lect/froshims/templates/index.html
@@ -0,0 +1,16 @@
+{% extends "layout.html" %}
+
+{% block body %}
+
+ <h1>Register</h1>
+ <form action="/registeer" method="post">
+ <input autocomplete="off" autofocus name="name" placeholder="Name" type="text">
+ <select name="sport">
+ <option>Basketball</option>
+ <option>Soccer</option>
+ <option>Ultimate Frisbee</option>
+ </select>
+ <button type="submit">Register</button>
+ </form>
+
+{% endblock %}