-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
32 lines (30 loc) · 866 Bytes
/
index.html
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
<html>
<head>
<title>jQuery CAPTCHA</title>
<link rel="stylesheet" type="text/css" href="style.css">
<!-- jQuery (required) -->
<script type="text/javascript" src="jquery.min.js"></script>
<!-- captcha plugin -->
<script type="text/javascript" src="captcha.jquery.js"></script>
<!-- Initialize plugin -->
<script type="text/javascript">
$(document).ready(function(){
$('.form1').captcha();
$('button').click(function(){
if(!verifyCaptcha('.form1')){
alert('Please click the captcha!');
}
});
});
</script>
</head>
<body>
<h1>jQuery CAPTCHA example</h1>
<p>Please view the README file for instructions on installing the plugin.</p>
<form class="form1" method="get">
<input type="text" placeholder="Form Field">
<div class="captcha"></div>
<button type="submit">Submit</button>
</form>
</body>
</html>