forked from jwjoel/KeyChain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.html
56 lines (54 loc) · 1.54 KB
/
settings.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/settings.css" />
<script defer src="js/storage.js"></script>
<script defer src="js/settings.js"></script>
</head>
<body>
<div
id="popup-notification"
class="popup-notification"
style="display: none"
>
<span id="popup-text"></span>
</div>
<div class="main-wrapper">
<div class="form-wrapper">
<div class="title">
<h3>Settings</h3>
</div>
<h3>Backup</h3>
<br />
<div class="buttons-wrapper">
<button id="import-button">Import</button>
<button id="export-button">Export</button>
</div>
<!--
<h3>Sync (Coming Soon)</h3>
<br>
<div class="buttons-wrapper">
<button id="connect-google-drive" disabled>Google Drive</button>
<button id="connect-one-drive" disabled>One Drive</button>
<button id="connect-one-drive" disabled>Amazon S3</button>
</div>
-->
<div class="footer">
<p>
KeyChain serves as a reliable and well-structured solution for users
to securely store and efficiently manage their API keys.
</p>
<p>
Author:
<a href="https://joellab.com" target="_blank">Joel (Jiawei) Wang</a>
</p>
<p>
Report bugs
<a href="https://github.com/jwjoel/KeyChain" target="_blank">here</a
>.
</p>
</div>
</div>
</div>
</body>
</html>