2020-10-30 20:34:04 +00:00
|
|
|
<!-- Copyright 2017-2020 Signal Messenger, LLC -->
|
|
|
|
<!-- SPDX-License-Identifier: AGPL-3.0-only -->
|
|
|
|
|
2017-10-13 23:49:16 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
2018-07-03 22:33:50 +00:00
|
|
|
<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';"
|
|
|
|
>
|
2020-02-07 20:19:35 +00:00
|
|
|
<link href="node_modules/sanitize.css/sanitize.css" rel="stylesheet" type="text/css" />
|
2018-07-03 22:33:50 +00:00
|
|
|
<link href="stylesheets/manifest.css" rel="stylesheet" type="text/css" />
|
|
|
|
<style>
|
|
|
|
body {
|
2020-09-16 16:40:15 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2018-07-03 22:33:50 +00:00
|
|
|
text-align: center;
|
2020-06-30 16:42:35 +00:00
|
|
|
overflow: hidden;
|
2020-03-05 21:24:51 +00:00
|
|
|
background-color: #3a76f0;
|
2018-07-03 22:33:50 +00:00
|
|
|
color: white;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
</style>
|
2017-10-13 23:49:16 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2020-05-15 18:28:13 +00:00
|
|
|
<div class='module-splash-screen'>
|
2020-09-16 16:40:15 +00:00
|
|
|
<div class='module-splash-screen__logo module-img--150'></div>
|
2018-07-03 22:33:50 +00:00
|
|
|
|
2020-05-15 18:28:13 +00:00
|
|
|
<div class='version'></div>
|
|
|
|
<div class='environment'></div>
|
|
|
|
<div>
|
|
|
|
<a href='https://signal.org'>signal.org</a>
|
|
|
|
</div>
|
|
|
|
<br>
|
2020-09-16 16:40:15 +00:00
|
|
|
<div>
|
|
|
|
<a class="acknowledgments" href="https://github.com/signalapp/Signal-Desktop/blob/development/ACKNOWLEDGMENTS.md">Software Acknowledgments</a>
|
|
|
|
</div>
|
2020-05-15 18:28:13 +00:00
|
|
|
<div>
|
|
|
|
<a class="privacy" href="https://signal.org/legal">Terms & Privacy Policy</a>
|
|
|
|
</div>
|
2018-07-03 22:33:50 +00:00
|
|
|
</div>
|
|
|
|
<script type='text/javascript' src='node_modules/jquery/dist/jquery.js'></script>
|
|
|
|
<script type='text/javascript' src='js/about_start.js'></script>
|
2017-10-13 23:49:16 +00:00
|
|
|
</body>
|
|
|
|
</html>
|