Files
shiny/www/index.html
2012-06-21 19:38:43 -07:00

27 lines
628 B
HTML

<html>
<head>
<script src="jquery-1.7.2.js" type="text/javascript"></script>
<script src="shiny.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="shiny.css"/>
</head>
<body>
<h1>Example 1: Hash Calculation</h1>
<p>
<label>Input:</label><br />
<input name="input1" value="Hello World!"/>
<input type="checkbox" name="addnewline" checked="checked"/> Append newline
</p>
<p>
<label>MD5:</label><br />
<pre id="md5_hash" class="live-text"></pre>
</p>
<p>
<label>SHA-1:</label><br />
<pre id="sha1_hash" class="live-text"></pre>
</p>
</body>
</html>