-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpassword.html
32 lines (32 loc) · 981 Bytes
/
password.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
<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' 'unsafe-inline';
style-src 'self' 'unsafe-inline';"
/>
<link href="stylesheets/manifest.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="root">
<div class="app-loading-screen">
<div class="content bchat-full-logo">
<img src="images/bchat/brand.svg" class="bchat-brand-logo" />
<img src="images/bchat/bchat_text.svg" class="bchat-text-logo" />
</div>
</div>
</div>
<script type="text/javascript">
require('./ts/mains/password_start.js');
</script>
</body>
</html>