-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.html
More file actions
43 lines (35 loc) · 935 Bytes
/
demo.html
File metadata and controls
43 lines (35 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE HTML>
<html>
<head>
<title>Jquery Visual Password Demo</title>
<script src="libs/jquery-1.7.2.min.js" type="text/javascript"></script>
<script src="libs/vizhash.min.js" type="text/javascript" ></script>
<script src="jquery-visual-password.min.js" type="text/javascript" ></script>
<style type="text/css">
input, label {
height:32px;
width:150px;
font-size:24px;
}
</style>
</head>
<body>
<script type="text/javascript">
$(function(){
$('input[type=password]').visualPassword();
});
</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>
</body>
</html>