2021-05-30 05:29:24 +00:00
<!DOCTYPE html>
<!--
Stairway.js: a simple JavaScript privacy quiz
Copyright © 2021 luca0N!
This file is part of Stairway.js.
Stairway.js is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Stairway.js is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Stairway.js. If not, see < https: / / www . gnu . org / licenses / > .
E-mail contact: < luca0n @ luca0n . com > .
-->
< html >
< head >
< meta charset = "UTF-8" / >
2021-06-02 22:30:53 +00:00
< title > Stairway Quiz< / title >
2021-05-30 05:44:25 +00:00
< link rel = "stylesheet" type = "text/css" href = "res/Stairway-js.css" / >
2021-05-30 05:29:24 +00:00
2021-05-31 02:34:18 +00:00
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
2021-06-02 21:08:25 +00:00
2021-05-30 05:29:24 +00:00
< script lang = "javascript" type = "text/javascript" src = "res/js/defs.js" > < / script >
< script lang = "javascript" type = "text/javascript" src = "res/js/io.js" > < / script >
2021-05-30 05:42:35 +00:00
< script lang = "javascript" type = "text/javascript" src = "res/js/main.js" > < / script >
2021-05-30 05:29:24 +00:00
< script lang = "javascript" type = "text/javascript" src = "res/js/js.js" > < / script >
< / head >
< body >
2021-06-02 21:08:25 +00:00
< div class = "content" >
2021-06-02 22:30:53 +00:00
< h1 > Stairway Quiz< / h1 > < hr / >
2021-06-02 21:08:25 +00:00
< p class = "warning" id = "javascript-warning" > It looks like your browser is configured to block JavaScript. We're sorry, but this page requires JavaScript in order to function.< / p >
< p class = "warning" id = "warning" > Loading quiz...< / p >
2021-05-30 05:29:24 +00:00
2021-06-02 21:08:25 +00:00
< h2 id = "quiz-title" > Unknown quiz< / h2 >
< p id = "quiz-author" > Unknown author< / p >
< div id = "results" >
2021-06-02 22:30:53 +00:00
< center > < p > Your grade is:< / p >
2021-06-02 21:08:25 +00:00
< span id = "badge-s" class = "badge grade-s" > Grade S< / span >
< span id = "badge-a" class = "badge grade-a" > Grade A< / span >
< span id = "badge-b" class = "badge grade-b" > Grade B< / span >
< span id = "badge-c" class = "badge grade-c" > Grade C< / span >
< span id = "badge-d" class = "badge grade-d" > Grade D< / span >
< span id = "badge-e" class = "badge grade-e" > Grade E< / span >
< span id = "badge-f" class = "badge grade-f" > Grade F< / span >
2021-05-30 05:29:24 +00:00
2021-06-02 21:08:25 +00:00
< / center > < br / >
2021-06-02 22:10:25 +00:00
< div id = "grade-message" > < / div >
2021-06-02 22:30:53 +00:00
< h2 > Your Report< / h2 >
2021-06-02 21:08:25 +00:00
< i > The good, bad and ugly< / i >
< div id = "reports" >
< / div >
2021-05-30 05:29:24 +00:00
2021-06-02 21:08:25 +00:00
< / div >
< div id = "quiz" > < / div >
< hr / >
2021-06-02 22:25:57 +00:00
< p > Stairway.js is < a href = "https://labs.luca0n.com/projects/stairway-js" target = "_blank" > released< / a > under the < a href = "https://git.luca0n.com/Stairway-js.git/tree/LICENSE" target = "_blank" > GNU General Public License version 3 or later< / a > , by < a href = "https://www.luca0n.com" target = "_blank" > luca0N!< / a > < / p >
2021-06-02 22:14:41 +00:00
< p > luca0N! does not endorse all quizzes created for Stairway.js and may not own copyrights on the current quiz.< / p >
2021-05-30 05:29:24 +00:00
< / div >
< / body >
< / html >