-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
23 lines (22 loc) · 876 Bytes
/
popup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<title>Educational Proof of Concept Tool: Social Media as a File System.</title>
<style>
body { width: 300px; padding: 10px; }
#inputText, #passphrase { width: 100%; margin: 5px 0; }
button { width: 100%; padding: 8px; margin: 5px 0; }
</style>
</head>
<body>
<h2>Educational Proof of Concept Tool: Social Media as a File System.</h2>
<p>Type a message & passphrase, then Encrypt. To decrypt, visit a tweet, enter passphrase, and click Decrypt.
<br> Follow us on Twitter @SMaaFS</br></p>
<textarea id="inputText" rows="4"></textarea>
<input type="text" id="passphrase" placeholder="Enter passphrase">
<button id="encrypt">Encrypt</button>
<button id="decrypt">Decrypt</button>
<div id="output"></div>
<script src="popup.js"></script>
</body>
</html>