-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprivacy.html
More file actions
82 lines (73 loc) · 3.53 KB
/
privacy.html
File metadata and controls
82 lines (73 loc) · 3.53 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<title>SnapperGPS - Privacy Policy</title>
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css" />
<link rel="manifest" href="snappergps.webmanifest">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Privacy policy.">
<meta name="theme-color" content="#5E2590">
<link rel="apple-touch-icon" href="images/icon-512-pink.png">
</head>
<body>
<!-- Nav bar -->
<nav class="navbar navbar-expand navbar-dark bg-dark fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">
<span class="full-text">SnapperGPS</span>
<span class="short-text">S</span>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a
class="nav-link"
href="configure.html">Configure
</a>
</li>
<li class="nav-item">
<a
class="nav-link"
href="upload.html">Upload
</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Main body -->
<main class="container">
<div class="row">
<div class="col">
<h1>Privacy policy</h1>
</div>
</div>
<div class="row bg-light">
<div class="row">
<div class="col-auto">
<ul>
<li>The SnapperGPS web app does not collect data
from users.
</li>
<li>The SnapperGPS team is not responsible for
content on linked third-party websites.
</li>
<li>The SnapperGPS web app does not use any cookies,
including third-party cookies.
</li>
</ul>
</div>
<div class="col justify-content-center align-self-center" style="text-align: center;">
<img src="images/icon-192.png" style="max-width: 192px" alt="SnapperGPS logo">
</div>
</div>
</div>
</main>
</body>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/js/bootstrap.bundle.min.js" integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0" crossorigin="anonymous"></script>
</html>