-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
36 lines (33 loc) · 1.52 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, user-scalable=0"/>
<link rel="icon" href="./static/msgsplit.png" type="image/png">
<title>message split</title>
<link rel="stylesheet" href="./static/msgsplit.css" type="text/css" />
<script type="text/javascript" src="./static/msgsplit.js"></script>
<meta name="version" content="0.1.4"/>
</head>
<body>
<div class="panel">
<h1><a href="./" accesskey="1" >message split</a></h1>
<div id="setmessage">
<label for="message">your message:</label>
<br>
<input type="text" id="plaintext" maxlength=254 autofocus/>
<button id="submitcipherserver" onclick="create_plaintext2ciphertext()" accesskey="a" >encrypt and submit cipher to server</button>
</div>
<div id="sendmessage">
<label for="linktobob">send this link:</label>
<br>
<input type="text" id="linktobob"/>
<p>Do not check this link, the message can only get read one time.</p>
</div>
<div id="getmessage">
<p>Save this message for sure! You cant get it a second time.</p>
<input type="text" id="message" />
<button onclick="get_ciphertext2plaintext()" id="getmessagebtn" accesskey="v" >get message</button>
</div>
<p><a href="https://github.com/klml/msgsplit">github.com/klml/msgsplit</a></p>
</div>
</body>