This repository has been archived by the owner on Oct 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
/
index.html
62 lines (56 loc) · 2.09 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Responsive reCAPTCHA</title>
<link rel="stylesheet" href="recaptcha.css">
<script type="text/javascript">
var RecaptchaOptions = {
theme : 'custom',
custom_theme_widget: 'recaptcha_widget'
};
</script>
</head>
<body>
<!-- Start Responsive reCAPTCHA -->
<div id="recaptcha_widget" style="display:none" class="recaptcha_widget">
<div id="recaptcha_image"></div>
<div class="recaptcha_only_if_incorrect_sol" style="color:red">Incorrect. Please try again.</div>
<div class="recaptcha_input">
<label class="recaptcha_only_if_image" for="recaptcha_response_field">Enter the words above:</label>
<label class="recaptcha_only_if_audio" for="recaptcha_response_field">Enter the numbers you hear:</label>
<input type="text" id="recaptcha_response_field" name="recaptcha_response_field">
</div>
<ul class="recaptcha_options">
<li>
<a href="javascript:Recaptcha.reload()">
<i class="fa fa-refresh"></i>
<span class="captcha_hide">Get another CAPTCHA</span>
</a>
</li>
<li class="recaptcha_only_if_image">
<a href="javascript:Recaptcha.switch_type('audio')">
<i class="fa fa-volume-up"></i><span class="captcha_hide"> Get an audio CAPTCHA</span>
</a>
</li>
<li class="recaptcha_only_if_audio">
<a href="javascript:Recaptcha.switch_type('image')">
<i class="fa fa-picture-o"></i><span class="captcha_hide"> Get an image CAPTCHA</span>
</a>
</li>
<li>
<a href="javascript:Recaptcha.showhelp()">
<i class="fa fa-question-circle"></i><span class="captcha_hide"> Help</span>
</a>
</li>
</ul>
</div>
<script type="text/javascript" src="http://www.google.com/recaptcha/api/challenge?k=[[YOUR-PUBLIC-KEY]]"></script>
<noscript>
<iframe src="http://www.google.com/recaptcha/api/noscript?k=[[YOUR-PUBLIC-KEY]]" height="300" width="500" frameborder="0"></iframe><br>
<textarea name="recaptcha_challenge_field"></textarea>
<input type="hidden" name="recaptcha_response_field" value="manual_challenge">
</noscript>
<!-- End Responsive reCAPTCHA-->
</body>
</html>