|
1 | | -<!DOCTYPE HTML> |
| 1 | +<!DOCTYPE html> |
2 | 2 | <!-- |
3 | 3 | /* |
4 | 4 | * JavaScript MD5 Demo |
|
12 | 12 | */ |
13 | 13 | --> |
14 | 14 | <html lang="en"> |
15 | | -<head> |
16 | | -<!--[if IE]> |
17 | | -<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
18 | | -<![endif]--> |
19 | | -<meta charset="utf-8"> |
20 | | -<title>JavaScript MD5 Demo</title> |
21 | | -<meta name="description" content="JavaScript MD5 implementation. Compatible with server-side environments like Node.js, module loaders like RequireJS, Browserify or webpack and all web browsers."> |
22 | | -<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
23 | | -<link rel="stylesheet" href="css/demo.css"> |
24 | | -</head> |
25 | | -<body> |
26 | | -<h1>JavaScript MD5 Demo</h1> |
27 | | -<p>JavaScript <a href="https://en.wikipedia.org/wiki/MD5">MD5</a> implementation.<br> |
28 | | -Compatible with server-side environments like <a href="http://nodejs.org/">Node.js</a>, module loaders like <a href="http://requirejs.org/">RequireJS</a>, <a href="http://browserify.org/">Browserify</a> or <a href="https://webpack.github.io/">webpack</a> and all web browsers.</p> |
29 | | -<ul class="navigation"> |
30 | | - <li><a href="https://github.com/blueimp/JavaScript-MD5/tags">Download</a></li> |
31 | | - <li><a href="https://github.com/blueimp/JavaScript-MD5">Source Code</a></li> |
32 | | - <li><a href="https://github.com/blueimp/JavaScript-MD5/blob/master/README.md">Documentation</a></li> |
33 | | - <li><a href="test/">Test</a></li> |
34 | | - <li><a href="https://blueimp.net">© Sebastian Tschan</a></li> |
35 | | -</ul> |
36 | | -<form> |
37 | | - <h2>Input</h2> |
38 | | - <textarea rows="6" id="input"></textarea> |
39 | | - <br> |
40 | | - <button type="submit" id="calculate">Calculate</button> |
41 | | - <button type="reset" id="reset">Reset</button> |
42 | | - <h2>Result</h2> |
43 | | - <input id="result"> |
44 | | - <br> |
45 | | -</form> |
46 | | -<script src="js/md5.js"></script> |
47 | | -<script src="js/demo/demo.js"></script> |
48 | | -</body> |
| 15 | + <head> |
| 16 | + <!--[if IE]> |
| 17 | + <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> |
| 18 | + <![endif]--> |
| 19 | + <meta charset="utf-8" /> |
| 20 | + <title>JavaScript MD5 Demo</title> |
| 21 | + <meta |
| 22 | + name="description" |
| 23 | + content="JavaScript MD5 implementation. Compatible with server-side environments like Node.js, module loaders like RequireJS, Browserify or webpack and all web browsers." |
| 24 | + /> |
| 25 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 26 | + <link rel="stylesheet" href="css/demo.css" /> |
| 27 | + </head> |
| 28 | + <body> |
| 29 | + <h1>JavaScript MD5 Demo</h1> |
| 30 | + <p> |
| 31 | + JavaScript |
| 32 | + <a href="https://en.wikipedia.org/wiki/MD5">MD5</a> implementation.<br /> |
| 33 | + Compatible with server-side environments like |
| 34 | + <a href="http://nodejs.org/">Node.js</a>, module loaders like |
| 35 | + <a href="http://requirejs.org/">RequireJS</a>, |
| 36 | + <a href="http://browserify.org/">Browserify</a> or |
| 37 | + <a href="https://webpack.github.io/">webpack</a> and all web browsers. |
| 38 | + </p> |
| 39 | + <ul class="navigation"> |
| 40 | + <li> |
| 41 | + <a href="https://github.com/blueimp/JavaScript-MD5/tags">Download</a> |
| 42 | + </li> |
| 43 | + <li> |
| 44 | + <a href="https://github.com/blueimp/JavaScript-MD5">Source Code</a> |
| 45 | + </li> |
| 46 | + <li> |
| 47 | + <a |
| 48 | + href="https://github.com/blueimp/JavaScript-MD5/blob/master/README.md" |
| 49 | + >Documentation</a |
| 50 | + > |
| 51 | + </li> |
| 52 | + <li><a href="test/">Test</a></li> |
| 53 | + <li><a href="https://blueimp.net">© Sebastian Tschan</a></li> |
| 54 | + </ul> |
| 55 | + <form> |
| 56 | + <h2>Input</h2> |
| 57 | + <textarea rows="6" id="input"></textarea> |
| 58 | + <br /> |
| 59 | + <button type="submit" id="calculate">Calculate</button> |
| 60 | + <button type="reset" id="reset">Reset</button> |
| 61 | + <h2>Result</h2> |
| 62 | + <input id="result" /> |
| 63 | + <br /> |
| 64 | + </form> |
| 65 | + <script src="js/md5.js"></script> |
| 66 | + <script src="js/demo/demo.js"></script> |
| 67 | + </body> |
49 | 68 | </html> |
0 commit comments