mirror of
https://github.com/rstudio/shiny.git
synced 2026-01-10 15:38:19 -05:00
27 lines
628 B
HTML
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>
|