Md5 example

Display md5 Hash on a webpage.

by Barbos

HTML

<script src="http://www.myersdaily.org/joseph/javascript/md5.js"></script>
<fieldset><legend>PBChess KeyGen</legend>
<label>Your Serial Number: <input name="sn" id="sn" class="textbox"></label>
<button id="hash-it">Generate</button>
<div id="result"></div>

CSS

body {
  background: #20262E;
  padding: 20px;
  font-family: Helvetica;
  color: #fff;
}

button {
  background: #0084ff;
  border: none;
  border-radius: 5px;
  padding: 4px 8px;
  font-size: 14px;
  color: #fff;
}

JavaScript

var button = document.getElementById('hash-it'),
    textbox = document.getElementById('sn'),
    result = document.getElementById('result');
button.onclick = function(){
    result.innerHTML = "License key: "+md5(textbox.value+"_SEQ=1");
}