-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
93 lines (75 loc) · 3.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>CryptoPaste</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<!-- <link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css"> -->
<link href="Skeleton-2.0.4/css/font.css" rel="stylesheet" type="text/css">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="Skeleton-2.0.4/css/normalize.css">
<link rel="stylesheet" href="Skeleton-2.0.4/css/skeleton.css">
<link rel="stylesheet" type="text/css" href="stylesheet.css" />
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<!-- <link rel="icon" type="image/png" href="Skeleton-2.0.4/images/favicon.png"> -->
</head>
<script src="utf8.js"></script>
<script src="sha1.js"></script>
<script src="cast5.js"></script>
<script src="cryptopaste.js"></script>
<body onload="cryptopaste_init()">
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container" style="margin-top:15px">
<div class="row">
<div class="twelve columns">
<label id="plaintext_label" for="plaintext">Message:</label>
<textarea id="plaintext" class="u-full-width" placeholder="(private message to protect)" rows=16></textarea>
<label id="ciphertext_label" for="ciphertext">Encrypted:</label>
<textarea id="ciphertext" class="u-full-width" placeholder="(protected private message)" rows=16></textarea>
</div>
</div>
<div class="row">
<div class="twelve columns">
<label id="passphrase_label" for="passphrase">Passphrase:</label>
<input type="password" id="passphrase" class="u-full-width" />
</div>
</div>
<div id="xxx" class="row">
<div class="twelve columns">
<input type="button" id="encrypt_btn" class="button-primary" value="Encrypt" onClick="btn_encrypt()" />
<input type="button" id="decrypt_btn" class="button-primary" value="Decrypt" onClick="btn_decrypt()" />
</div>
</div>
<div id="buttons_staging" class="row">
<div class="twelve columns">
<input type="button" id="host_btn" class="button-primary" value="Create Link" onClick="btn_host()" />
<input type="button" id="local_btn" class="button-primary" value="Save Self-Decrypting Document" onClick="btn_save_sdd()" />
</div>
</div>
<div class="row">
<label id="url_share_info">Link to others:</label>
<input type="text" id="url_share" class="u-full-width" readonly>
</div>
<div class="row">
<label id="url_raw_info">Link to raw data stored on server:</label>
<input type="text" id="url_raw" class="u-full-width" readonly>
</div>
<div id="about" class="row">
CryptoPaste is free, <a href='https://github.com/lwerdna/cryptopaste'>open source</a> encryption implementing the <a href="http://openpgp.org">OpenPGP standard</a>.
</div>
</div>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>