40 lines
1.8 KiB
HTML
40 lines
1.8 KiB
HTML
|
<!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"/>
|
||
|
</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>Privacy Rating displays a form containing a few questions which are used to show a privacy grade based on your technology tasks, ranging from excellent (<span class="badge-small grade-s">Grade S</span>) to very bad (<span class="badge-small grade-f">Grade F</span>).</p>
|
||
|
<p>Privacy Rating attemps to warn you about bad software, services and practices in order to protect your privacy online.</p>
|
||
|
<p>This service does not track you, and your answers are not sent to our servers. If you don't want to trust this instance, you can self-host it yourself.</p>
|
||
|
<p>Once you are ready to start, click on the button below.</p>
|
||
|
<button onclick="document.location = 'session.html'">Start!</button>
|
||
|
</body>
|
||
|
</html>
|