diff options
author | Olli Vilén <oviln@local> | 2023-11-16 22:11:46 +0200 |
---|---|---|
committer | Olli Vilén <oviln@local> | 2023-11-16 22:11:46 +0200 |
commit | 0ed244ef2dd27a835ec12fdbc93a1f20bbcd89eb (patch) | |
tree | ba673352e44f2e1e55b8dc762b45a9cd769376e3 /static | |
parent | 93a927b130ba09cea29aba2077848f785ac48844 (diff) |
More db actions and forms.
Diffstat (limited to 'static')
-rw-r--r-- | static/index.html | 15 | ||||
-rw-r--r-- | static/pages.json | 10 |
2 files changed, 24 insertions, 1 deletions
diff --git a/static/index.html b/static/index.html index c651142..d726587 100644 --- a/static/index.html +++ b/static/index.html @@ -10,5 +10,18 @@ <link rel="icon" type="image/svg+xml" href="kyselma.svg"> <script src="menu.js"></script> </head> -<body></body> +<body> +<noscript> +<H1>Kyselmä</H1> +<a href="pages/info.html">Pääsivu</a><br> +<a href="pages/create.html">Luo kysely</a><br> +<a href="pages/answer.html">Vastaa kyselyyn</a><br> +<a href="pages/analyse.html">Tutki vastauksia</a><br> +<a href="pages/moderate.html">Moderoi sivustoa</a><br> +<a href="pages/nick.html">Anna nimimerkki</a><br> +<hr> +Tämä sivu tarvitsee JavaScriptin toimiakseen. Voit kumminkin yrittää käyttää +sivua ylläolevien linkkien kautta. +</noscript> +</body> </html>
\ No newline at end of file diff --git a/static/pages.json b/static/pages.json index 4a18ca9..618bc7a 100644 --- a/static/pages.json +++ b/static/pages.json @@ -32,6 +32,16 @@ "pageTitle": "Anna nimimerkki", "URL": "pages/nick.html", "hidden": "yes" + }, + "question": { + "pageTitle": "Lisää kysymys", + "URL": "pages/question.html", + "hidden": "yes" + }, + "quiz": { + "pageTitle": "Rakenna kysely", + "URL": "pages/quiz.html", + "hidden": "yes" } } } |