forked from dsolonenko/financisto
-
Notifications
You must be signed in to change notification settings - Fork 1
/
privacy.html
57 lines (50 loc) · 2.63 KB
/
privacy.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
<html>
<head>
<!--Import Google Icon Font-->
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.0/css/materialize.min.css">
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Financisto</title>
</head>
<body class="gray lighten-5">
<nav class="orange lighten-1" role="navigation">
<div class="nav-wrapper container"><a id="logo-container" href="index.html" class="brand-logo">Financisto</a>
<ul class="right hide-on-med-and-down">
<li><a href="privacy.html">Privacy Policy</a></li>
</ul>
<ul id="nav-mobile" class="side-nav">
<li><a href="privacy.html">Privacy Policy</a></li>
</ul>
<a href="privacy.html" data-activates="nav-mobile" class="button-collapse"><i class="material-icons">menu</i></a>
</div>
</nav>
<div class="container">
<div class="section">
<div class="card-panel large grey lighten-5 z-depth-1">
<div class="card-content">
<h1 class="center-align">Privacy Policy</h1>
<div class="section">
<div class="flow-text">Financisto will not obtain any personally-identifying information about you
when you use it unless you choose to provide such information.
</div>
</div>
<div class="section">
<div class="flow-text">Financisto is a local application, it does not have a backend infrastructure, and it does not store the data anywhere outside of the device. You may choose to manually authorize Financisto to upload the data backups to an online storage like Google Drive or Dropbox. The backups are stored in your own private space and not shared with anyone else.
</div>
</div>
<div class="section">
<div class="flow-text">You may choose to take pictures using the device camera and attach them to transactions. These pictures are stored locally and not shared anywhere outside of the device.
</div>
</div>
</div>
</div>
</div>
</div>
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.0/js/materialize.min.js"></script>
</body>
</html>