Added invisible reCAPTCHA
This commit is contained in:
parent
c6428d2251
commit
4e103ad9c5
@ -29,7 +29,7 @@ if($_POST) {
|
|||||||
if (!$captcha){
|
if (!$captcha){
|
||||||
$error['captcha'] = "Please check the CAPTCHA field.";
|
$error['captcha'] = "Please check the CAPTCHA field.";
|
||||||
} else {
|
} else {
|
||||||
$captchaResponse = json_decode(file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=6Le1wRcTAAAAADbdnvPLKQ_hupTI4jzaGGXFQhQA&response=".$captcha."&remoteip=".$_SERVER['REMOTE_ADDR']), true);
|
$captchaResponse = json_decode(file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=6Le7VisUAAAAAKExpdr5NJy8AHGM0Y3iPI1eVZgD&response=".$captcha."&remoteip=".$_SERVER['REMOTE_ADDR']), true);
|
||||||
if($captchaResponse['success'] == false) {
|
if($captchaResponse['success'] == false) {
|
||||||
$error['captcha'] = "You are a robot.";
|
$error['captcha'] = "You are a robot.";
|
||||||
}
|
}
|
||||||
|
@ -391,7 +391,11 @@
|
|||||||
<input type="text" value="" size="35" maxlength="100" id="contactEmail" name="contactEmail" placeholder="Email (required)">
|
<input type="text" value="" size="35" maxlength="100" id="contactEmail" name="contactEmail" placeholder="Email (required)">
|
||||||
<input type="text" value="" size="35" maxlength="100" id="contactSubject" name="contactSubject" placeholder="Subject">
|
<input type="text" value="" size="35" maxlength="100" id="contactSubject" name="contactSubject" placeholder="Subject">
|
||||||
<textarea cols="50" rows="15" maxlength="1500" id="contactMessage" name="contactMessage" placeholder="Message" style="resize: vertical; font-family: inherit; font-size: inherit"></textarea>
|
<textarea cols="50" rows="15" maxlength="1500" id="contactMessage" name="contactMessage" placeholder="Message" style="resize: vertical; font-family: inherit; font-size: inherit"></textarea>
|
||||||
<div id="g-recaptcha" class="g-recaptcha" data-theme="dark" data-sitekey="6Le1wRcTAAAAAMOmewHOghJved-nNQOq-1ro7vtc"></div><br/>
|
<button
|
||||||
|
class="g-recaptcha"
|
||||||
|
data-sitekey="6Le7VisUAAAAAIn3TfNvR6srMLuVa6Xw09zojiIt">
|
||||||
|
Submit
|
||||||
|
</button>
|
||||||
<button class="submit">Submit</button>
|
<button class="submit">Submit</button>
|
||||||
<span id="image-loader">
|
<span id="image-loader">
|
||||||
<img alt="" src="images/loader.gif">
|
<img alt="" src="images/loader.gif">
|
||||||
|
Loading…
Reference in New Issue
Block a user