62 lines
1.5 KiB
HTML
62 lines
1.5 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
<title>HashMask - Demo</title>
|
|
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.js"></script>
|
|
<script type="text/javascript" src="jquery.sha1.js"></script>
|
|
<script type="text/javascript" src="jquery.sparkline.js"></script>
|
|
<script type="text/javascript" src="jquery.hashmask.js"></script>
|
|
|
|
<style type="text/css">
|
|
/* <![CDATA[ */
|
|
body {
|
|
text-align: center;
|
|
font-family: "Myriad Pro", Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
color: #666;
|
|
font-size: .8em;
|
|
}
|
|
|
|
#username, #password
|
|
{
|
|
font-size: 2em;
|
|
width: 350px;
|
|
}
|
|
/* ]]> */
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Login to HashMask Demo</h1>
|
|
|
|
<form id="loginForm" action="login" method="post">
|
|
<p>
|
|
<label for="username">Username</label>
|
|
<input type="text" name="username" id="username" value="" size="20" />
|
|
</p>
|
|
<p>
|
|
<label for="password">Password</label>
|
|
<input type="password" name="password" id="password" value="" size="20" />
|
|
</p>
|
|
<p class="submit">
|
|
<input type="submit" name="submit" id="submit" value="Login" />
|
|
</p>
|
|
</form>
|
|
|
|
<div id="hello"></div>
|
|
|
|
<script type="text/javascript">
|
|
// <![CDATA[
|
|
$(function() {
|
|
$("#password").hashmask();
|
|
});
|
|
// ]]>
|
|
</script>
|
|
</body>
|
|
</html>
|