-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
116 lines (105 loc) · 3.75 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!--
/*
* OpenPGP - PGP enryption for Firefox OS
* Copyright (C) 2015 Aronne Brivio
*
* This file is part of OpenPGP.
*
* OpenPGP is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* OpenPGP is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with OpenPGP. If not, see <http://www.gnu.org/licenses/>.
*/
-->
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, user-scalable=no" />
<meta name="theme-color" content="#f97c17" />
<!-- Some Gaia components -->
<link href="css/gaia/headers.css" rel="stylesheet" />
<link href="css/gaia/lists.css" rel="stylesheet" />
<link href="css/gaia/layout.css" rel="stylesheet" />
<link href="css/gaia/scrolling.css" rel="stylesheet" />
<link href="css/gaia/status.css" rel="stylesheet" />
<link href="css/gaia/edit_mode.css" rel="stylesheet" />
<link href="css/gaia/buttons.css" rel="stylesheet" />
<link href="css/gaia/action_menu.css" rel="stylesheet" />
<link href="css/gaia/input_areas.css" rel="stylesheet" />
<link href="css/gaia/value_selector.css" rel="stylesheet" />
<!-- Some others stylish stuff -->
<link href="css/style.css" rel="stylesheet" />
<link href="css/util.css" rel="stylesheet" />
<link href="css/transitions.css" rel="stylesheet" />
<!-- Using gaia-icons/gaia-icons.css instead of gaia/icons.css -->
<link href="css/gaia-icons/gaia-icons.css" rel="stylesheet" />
<!-- Script -->
<script src="js/jquery-2.1.1.min.js"></script>
<script src="js/openpgp.min.js"></script>
<script src="js/openpgp.worker.min.js"></script>
<script src="js/applait.finder.min.js"></script>
<script src="js/FileSaver.min.js"></script>
<script src="js/status.js"></script>
<script src="js/storage.js"></script>
<script src="js/app.js"></script>
</head>
<body role='application'>
<section role='region' id='home' data-position="current">
<header class='fixed'>
<button disbled class='back-button'></button>
<menu type='toolbar'>
<button id='info' data-icon='info'></button>
</menu>
<h1>OpenPGP</h1>
</header>
<article class="content scrollable header">
<section data-type="list">
<ul>
<li><a href="#" id="generate-pair"><p>Generate a pair</p></a></li>
<li><a href="#" id="load-pub-key"><p>Load a Public key</p></a></li>
<li><a href="#" id="load-priv-key"><p>Load a Private key</p></a></li>
<li><a href="#" id="encrypt"><p>Encrypt a message</p></a></li>
<li><a href="#" id="decrypt"><p>Decrypt a message</p></a></li>
<li><a href="#" id="database"><p>Local database</p></a></li>
</ul>
</section>
</article>
</section>
<section role="region" id="right" data-position="right">
<header class="fixed">
<button id="back" data-icon="back"></button>
<menu type='toolbar' id='tbar'> </menu>
<h1 id="head"></h1>
</header>
<article class="content scrollable header">
<div>
<input type='file' id='file-input'/>
</div>
<div id="wrapper">
<!-- ... -->
</div>
</article>
</section>
<section role="region" id="down" data-position="down">
<header class="fixed">
<button id="close" data-icon="close"></button>
<menu type="toolbar">
<button disbled class='back-button'></button>
</menu>
<h1 id="head_down"></h1>
</header>
<article class="content scrollable header" id="wrapper_down">
<!-- ... -->
</article>
</section>
</body>
</html>