Created
February 26, 2011 17:25
-
-
Save mrenouf/845403 to your computer and use it in GitHub Desktop.
HTML skeleton -- Pretty me up!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> | |
<script type="text/javascript" language="javascript" src="demo/demo.nocache.js"></script> | |
</head> | |
<body> | |
<input type="text" id="passphrase"> | |
<input type="key" id="key"> | |
<textarea id="plaintext"></textarea> | |
<button id="encrypt">Encrypt</button> | |
<textarea id="cipher></textarea> | |
<button id="decrypt">Decrypt</button> | |
<noscript> | |
<div style="width: 22em; position: absolute; left: 50%; margin-left: -11em; color: red; background-color: white; border: 1px solid red; padding: 4px; font-family: sans-serif"> | |
Your web browser must have JavaScript enabled | |
in order for this application to display correctly. | |
</div> | |
</noscript> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment