jQuery Visual Password

HTML

<script src="https://raw.github.com/sametmax/jQuery-Visual-Password/master/jquery-visual-password.min.js"></script>
<script src="https://github.com/sametmax/VizHash.js/raw/master/vizhash.min.js"></script>
<h1>Jquery Visual Password</h1>

<p>
  <a href="https://github.com/sametmax/jQuery-Visual-Password">Project page</a>
</p>

<form action="." method="get" accept-charset="utf-8" >
  <p>
    <label for="pwd1">Password: <input type="password" name="pwd1"></label>
  </p>
  <p>
    <label for="pwd2" >Password: <input type="password" name="pwd2" ></label>
  </p>
</form>

CSS

input, label {
      height:32px;
      width:150px;
      font-size:24px;
}

p {
margin:1em;
}

JavaScript

$(function(){
    $('input[type=password]').visualPassword();
  });