-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(compliance): add privacy and terms page
- Loading branch information
Showing
5 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
<title>NesTrisChamps: Privacy</title> | ||
<meta name="description" content="Login to access NestrisChamps tracking features" /> | ||
|
||
<link rel="stylesheet" href="/vendor/bulma.1.0.2.min.css"> | ||
<style> | ||
.navbar-item img { | ||
max-height: 2.5rem; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
|
||
<%- include('header'); %> | ||
|
||
<section class="section"> | ||
<div class="container"> | ||
<h1 class="title is-1"> | ||
NesTrisChamps: Privacy | ||
</h1> | ||
<p class="block">NesTrisChamps contains NO PASSWORDS. Login into NesTrisChamps is done via third party identity providers like <a href="https://google.com">Google</a> or <a href="https://twitch.tv">Twitch</a>.</p> | ||
<p class="block">Game data are freely available to anyone on the web.</p> | ||
<p class="block">Sensitive Data like Date of Birth are never revealed, they are only used to compute age.</p> | ||
<p class="block">NesTrisChamps doesn't sell or release any personal data to anyone.</p> | ||
</div> | ||
</section> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
<title>NesTrisChamps: Terms of Service</title> | ||
<meta name="description" content="Login to access NestrisChamps tracking features" /> | ||
|
||
<link rel="stylesheet" href="/vendor/bulma.1.0.2.min.css"> | ||
<style> | ||
.navbar-item img { | ||
max-height: 2.5rem; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
|
||
<%- include('header'); %> | ||
|
||
<section class="section"> | ||
<div class="container"> | ||
<h1 class="title is-1"> | ||
NesTrisChamps: Terms of Service | ||
</h1> | ||
<p class="block">NesTrisChamps is Open Source, hosted on github <a href="https://github.com/timotheeg/nestrischamps">here</a>.</p> | ||
<p class="block">nestrischamps.io is an online, freely available version of NesTrisChamps.</p> | ||
<p class="block">It runs on a single server. So, please be nice and do not abuse the service.</p> | ||
<p class="block">All game data is freely available to all.</p> | ||
<p class="block">Yobi, the creator of NesTrisChamps and operator of nestrischamps.io reserves the right to ban you if you misbehave.</p> | ||
</div> | ||
</section> | ||
|
||
</body> | ||
</html> |