diff options
author | Marvin Borner | 2020-10-02 21:12:23 +0200 |
---|---|---|
committer | Marvin Borner | 2020-10-02 21:12:23 +0200 |
commit | e52bcb760f36b68495692ac5c5a5b68e8dafc33b (patch) | |
tree | 9e386b6081a0516d2c475e187f0b744d65aae156 /poll/public/index.html | |
parent | 762794cecdb0b12b58db0de16d31c8d7c216171c (diff) |
Added polls
Diffstat (limited to 'poll/public/index.html')
-rw-r--r-- | poll/public/index.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/poll/public/index.html b/poll/public/index.html new file mode 100644 index 0000000..8530b76 --- /dev/null +++ b/poll/public/index.html @@ -0,0 +1,35 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link + rel="stylesheet" + href="https://unpkg.com/purecss@2.0.3/build/pure-min.css" + integrity="sha384-cg6SkqEOCV1NbJoCu11+bm0NvBRc8IYLRGXkmNrqUBfTjmMYwNKPWBTIKyw9mHNJ" + crossorigin="anonymous" + /> + <link rel="stylesheet" href="style.css" type="text/css" media="all" /> + + <title>Schüler-Ranking</title> + </head> + <body> + <div> + <form class="pure-form pure-form-stacked" action="api/answer" method="post"> + <fieldset> + <!-- TODO: Add progress --> + <legend>Schüler-Ranking</legend> + <p>Welche/r Schüler/in...</p> + <label id="question_label" for="question"></label> + <input name="question" id="question" hidden></input> + <br/> + <label for="answer">Antwort</label> + <select name="answer" id="answer" required></select> + <button type="submit" class="pure-button pure-button-primary">Antworten</button> + </fieldset> + </form> + </div> + + <script src="script.js" charset="utf-8"></script> + </body> +</html> |