diff options
author | JoelHMikael <joel.h.kronqvist@gmail.com> | 2021-12-06 14:59:09 +0200 |
---|---|---|
committer | JoelHMikael <joel.h.kronqvist@gmail.com> | 2021-12-06 14:59:09 +0200 |
commit | fbfdfaec51be5a7ead56a2888e4864c8b3470db5 (patch) | |
tree | cc6e294b037f534761afaf34a40b341011f862d8 /index.html | |
parent | ffef8333636fe6143aa675534f6ce7852199be20 (diff) | |
download | LYLLRuoka-fbfdfaec51be5a7ead56a2888e4864c8b3470db5.tar.gz LYLLRuoka-fbfdfaec51be5a7ead56a2888e4864c8b3470db5.zip |
Added a possibility to choose the weekday
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -9,10 +9,21 @@ <h1>Food-app</h1> <p>\(result\)</p> <form method="GET"> - <label for="index">Abbreviation of teacher or course:</label> + <label for="index">Opettaja / kurssi:</label> <br> <input type="text" name="index" placeholder="sahe // ÄI1.2"> <br> + <label for="day">Päivä:</label> + <br> + <select name="day"> + <option value="1">ma</option> + <option value="2">ti</option> + <option value="3">ke</option> + <option value="4">to</option> + <option value="5">pe</option> + <option value="6" disabled>la</option> + <option value="0" disabled>su</option> + </select> <input type="submit"> </form> </body> |