aboutsummaryrefslogtreecommitdiff
path: root/poll/public/index.html
diff options
context:
space:
mode:
authorMarvin Borner2020-10-02 21:12:23 +0200
committerMarvin Borner2020-10-02 21:12:23 +0200
commite52bcb760f36b68495692ac5c5a5b68e8dafc33b (patch)
tree9e386b6081a0516d2c475e187f0b744d65aae156 /poll/public/index.html
parent762794cecdb0b12b58db0de16d31c8d7c216171c (diff)
Added polls
Diffstat (limited to 'poll/public/index.html')
-rw-r--r--poll/public/index.html35
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>