Add source files

This commit is contained in:
luca0N! 2021-05-30 02:29:24 -03:00
commit 49bed7259e
Signed by: luca0N
GPG key ID: 2E7B4655CF16D7D6
10 changed files with 1190 additions and 0 deletions

58
session.html Normal file
View file

@ -0,0 +1,58 @@
<!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"/>
<title>Privacy Rating</title>
<link rel="stylesheet" type="text/css" href="res/privacy-rating.css"/>
<script lang="javascript" type="text/javascript" src="res/js/defs.js"></script>
<script lang="javascript" type="text/javascript" src="res/js/io.js"></script>
<script lang="javascript" src="res/js/main.js"></script>
<script lang="javascript" type="text/javascript" src="res/js/js.js"></script>
</head>
<body>
<h1>Privacy Rating</h1><hr/>
<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>
<h2 id="quiz-title">Quiz Title</h2>
<p id="quiz-author">Published by Author</p>
<div id="quiz">
</div>
<!--<p>The challenge has begun! In order to find out your privacy grade, you must answer the questions in this form based on your technology use. You may skip questions if you deem necessary.</p>
<p>Please wait - loading questions...</p>
<div class="section-question">
<p class="question">Q: What operating system is installed on your main computer?</p>
<input type="radio">Windows</input>
<input type="radio">macOS</input>
<input type="radio">Linux</input>
<input type="radio">BSD</input>
<input type="radio">Windows</input>
</div>-->
</body>
</html>