forked from oxen-io/session-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
52 lines (48 loc) · 1.27 KB
/
about.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
<html>
<head>
<meta http-equiv="Content-Security-Policy"
content="default-src 'none';
child-src 'self';
connect-src 'self' https: wss:;
font-src 'self';
form-action 'self';
frame-src 'none';
img-src 'self' blob: data:;
media-src 'self' blob:;
object-src 'none';
script-src 'self';
style-src 'self' 'unsafe-inline';"
>
<link href="stylesheets/manifest.css" rel="stylesheet" type="text/css" />
<style>
body {
text-align: center;
background-color: rgba(0,0,0);
color: white;
font-size: 14px;
}
img {
margin-top: 1em;
padding: 12px;
}
a {
color: white;
}
</style>
</head>
<body>
<img src='images/session/session_icon_64.png' width='250' height='250'>
<div class='version'></div>
<div class='commitHash'></div>
<div class='environment'></div>
<div>
<a href="https://getsession.org">loki.network</a>
</div>
<br>
<div>
<a class="privacy" href="https://getsession.org">Terms & Privacy Policy</a>
</div>
<script type='text/javascript' src='node_modules/jquery/dist/jquery.js'></script>
<script type='text/javascript' src='js/about_start.js'></script>
</body>
</html>