-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
57 lines (50 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
52
53
54
55
56
57
<!doctype html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Emergency Contacts</title>
<meta name="description" content="Your personal emergency contacts">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preload" href="css/normalize.min.css" as="style">
<link rel="preload" href="css/main.css" as="style">
<link rel="preload" href="js/polyfill.js" as="script">
<link rel="preload" href="js/vendor/triplesec.min.js" as="script">
<link rel="preload" href="js/main.js" as="script">
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body id="decrypt">
<div class="authenticate">
<div class="decrypt-form">
<input type="password" placeholder="Password">
<button type="button">Sign-in</button>
</div>
<div class="error-message"></div>
</div>
<div id="content" role="main"></div>
<div class="actions hide">
<button id="copy-json">Copy JSON</button>
<a class="page-link" href="encrypt.html">Go to encryption</a>
</div>
<div class="loading-container hide">
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.0" width="240px" height="30px" viewBox="0 0 128 16" xml:space="preserve"><path fill="#94c8ff" fill-opacity="0.42" d="M6.4,4.8A3.2,3.2,0,1,1,3.2,8,3.2,3.2,0,0,1,6.4,4.8Zm12.8,0A3.2,3.2,0,1,1,16,8,3.2,3.2,0,0,1,19.2,4.8ZM32,4.8A3.2,3.2,0,1,1,28.8,8,3.2,3.2,0,0,1,32,4.8Zm12.8,0A3.2,3.2,0,1,1,41.6,8,3.2,3.2,0,0,1,44.8,4.8Zm12.8,0A3.2,3.2,0,1,1,54.4,8,3.2,3.2,0,0,1,57.6,4.8Zm12.8,0A3.2,3.2,0,1,1,67.2,8,3.2,3.2,0,0,1,70.4,4.8Zm12.8,0A3.2,3.2,0,1,1,80,8,3.2,3.2,0,0,1,83.2,4.8ZM96,4.8A3.2,3.2,0,1,1,92.8,8,3.2,3.2,0,0,1,96,4.8Zm12.8,0A3.2,3.2,0,1,1,105.6,8,3.2,3.2,0,0,1,108.8,4.8Zm12.8,0A3.2,3.2,0,1,1,118.4,8,3.2,3.2,0,0,1,121.6,4.8Z" /><g><path fill="#007bff" fill-opacity="1" d="M-42.7,3.84A4.16,4.16,0,0,1-38.54,8a4.16,4.16,0,0,1-4.16,4.16A4.16,4.16,0,0,1-46.86,8,4.16,4.16,0,0,1-42.7,3.84Zm12.8-.64A4.8,4.8,0,0,1-25.1,8a4.8,4.8,0,0,1-4.8,4.8A4.8,4.8,0,0,1-34.7,8,4.8,4.8,0,0,1-29.9,3.2Zm12.8-.64A5.44,5.44,0,0,1-11.66,8a5.44,5.44,0,0,1-5.44,5.44A5.44,5.44,0,0,1-22.54,8,5.44,5.44,0,0,1-17.1,2.56Z" /><animateTransform attributeName="transform" type="translate" values="23 0;36 0;49 0;62 0;74.5 0;87.5 0;100 0;113 0;125.5 0;138.5 0;151.5 0;164.5 0;178 0" calcMode="discrete" dur="1170ms" repeatCount="indefinite" /></g></svg>
</div>
<template class="person">
<div class="person">
<div class="name"></div>
<div class="phone-numbers"></div>
</div>
</template>
<template class="phone">
<a href="" class="phone">
<div class="type"></div>
<div class="value"></div>
</a>
</template>
<script src="js/polyfill.js"></script>
<script src="js/vendor/triplesec.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>