-
Notifications
You must be signed in to change notification settings - Fork 4
/
privacynotice.html
59 lines (50 loc) · 1.54 KB
/
privacynotice.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE HTML>
<html>
<head>
<title>Gym Climbing Tracker</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="style.php/mycss.scss">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script src="js/bootstrap.js"></script>
<stylesheet" type="text/css" href="style.php/mycss.scss">
</head>
<body>
<?php include_once("php_common/analyticstracking.php") ?>
<nav class = "navbar navbar-default">
<div class = "container-fluid">
<a class="navbar-brand" href="#">Logo</a>
<ul class="nav navbar-nav navbar-left">
<li>
<a href="workout-input.html">Learn More</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="#">Sign Up</a>
</li>
<li>
<a href="#">Login</a>
</li>
</ul>
</div>
</nav>
<h1 style="margin-left:5%">Security and Privacy Notice</h1>
<ul>
<li>
<h3>Stored Data</h3>
User passwords are never stored in clear-text. They are present in
a highly encrypted form on the database.
<br><br>
In addition, the following are also encrypted: 1) messages between
users, 2) notes of workout sessions.
</li>
<li>
<h3>Cookies</h3>
Cookies are required on this site to keep track of your session
after you login.
</li>
</ul>
</body>
</html>