-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
51 lines (47 loc) · 3.11 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Secure wallet</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="./manifest.json">
<meta name="theme-color" content="#31342F">
<meta name="description" content="A PWA for password manager. Works offline, no server, no database, uses local storage to store all data, built with react + redux + webpack.">
<link rel="apple-touch-icon" sizes="180x180" href="/secure-wallet/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="48x48" href="/secure-wallet/images/favicon-48x48.png">
<link rel="icon" type="image/png" sizes="32x32" href="/secure-wallet/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/secure-wallet/images/favicon-16x16.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link async rel="stylesheet" href="/secure-wallet/main.css">
<link defer href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
</head>
<body>
<div id='app'>
<div style='text-align: center;margin-top: 32vh'>
<svg width="100px" height="100px" viewBox="38 125 245 245" >
<g id="lock" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" transform="translate(38.000000, 125.000000)">
<circle id="Oval" fill='#616161' cx="122.5" cy="122.5" r="122.5"></circle>
<path d="M162.5,91 L155.75,91 L155.75,77.2857143 C155.75,58.36 140.63,43 122,43 C103.37,43 88.25,58.36 88.25,77.2857143 L88.25,91 L81.5,91 C74.075,91 68,97.1714286 68,104.714286 L68,173.285714 C68,180.828571 74.075,187 81.5,187 L162.5,187 C169.925,187 176,180.828571 176,173.285714 L176,104.714286 C176,97.1714286 169.925,91 162.5,91 Z M122,152.714286 C114.575,152.714286 108.5,146.542857 108.5,139 C108.5,131.457143 114.575,125.285714 122,125.285714 C129.425,125.285714 135.5,131.457143 135.5,139 C135.5,146.542857 129.425,152.714286 122,152.714286 Z M142.925,91 L101.075,91 L101.075,77.2857143 C101.075,65.56 110.4575,56.0285714 122,56.0285714 C133.5425,56.0285714 142.925,65.56 142.925,77.2857143 L142.925,91 Z" id="Shape" fill='#fff' fill-rule="nonzero"></path>
</g>
</svg>
<p>Loading...</p>
</div>
</div>
<script type="text/javascript">
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('./sw.js', { scope: './' }).then(reg => reg.update() && console.log('sw[update]'))
}
</script>
<script src="main.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-43397380-8', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>