forked from lettergram/AnyCrypt
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbrowsercrypt.html
44 lines (44 loc) · 1.2 KB
/
browsercrypt.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
<!doctype html>
<html>
<head>
<script src="js/jquery-1.11.3.min.js"></script>
<script src="js/browsercrypt.js"></script>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<title>BrowserCrypt</title>
</head>
<body>
<div class="row">
<div class="col-md-offset-2 col-md-8">
<br>
<center>
<img src="images/logo-with-text.png" style="width:40em;">
</center>
</div>
</div>
<div class="row">
<div class="col-md-4 col-md-offset-4">
<div id="loading-bar" style="align:center;">
<div class="loading-wrapper html5-progress-bar">
<center><img id="loader"></img></center>
</div>
</div>
<div id="settings" style="display: none;">
<h3>Keybase Username:</h3>
<input type="text" id="username" class="form-control"><br><br>
<h3>List Your Friends:</h3>
<p>
<small>Must be in comma seperated form.</small><br>
<small>Example: MyKeybaseUsername (me), Friend #2, etc.</small><br>
</p>
<textarea id="friends" rows="4" cols="50" class="form-control"></textarea><br>
<center>
<button class="btn btn-primary" type="submit" id="submit">
Submit
</button>
</center>
<br>
</div>
</div>
</div>
</body>
</html>