<?php include 'includes/php_header_en.php'; ?>
<?php
  require_once('recaptchalib.php');
  $privatekey = "6LfqFu0SAAAAAGpU3Gtz3OkMmyuuFfos2cfsudNA";
  $resp = recaptcha_check_answer ($privatekey,
                                $_SERVER["REMOTE_ADDR"],
                                $_POST["recaptcha_challenge_field"],
                                $_POST["recaptcha_response_field"]);

  if (!$resp->is_valid) {
    // What happens when the CAPTCHA was entered incorrectly
    die ("The reCAPTCHA wasn't entered correctly. Go back and try it again." .
         "(reCAPTCHA said: " . $resp->error . ")");
  } else {
    // Your code here to handle a successful verification
    
  }
  ?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>	<!-- CLF 2.0 TEMPLATE VERSION 1.04 | VERSION 1.04 DU GABARIT NSI 2.0 -->
<!-- HEADER BEGINS | DEBUT DE L EN-TETE -->
<!-- TITLE BEGINS | DEBUT DU TITRE -->
<title>Subscription Verification</title>
<!-- TITLE ENDS | FIN DU TITRE --><!-- METADATA BEGINS | DEBUT DES METADONNEES -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" />
<link rel="schema.dcterms" href="http://purl.org/dc/terms/" />
<meta name="dc.description" content="Screening forms page for 632 Air Cadet Squadron" />
<meta name="description" content="Screening forms page for 632 Air Cadet Squadron" />
<meta name="keywords" content="Scrrening forms" />
<meta name="dc.creator" content="632 Air Cadet Squadron" />
<meta name="dcterms.issued" scheme="W3CDTF" content="2010-08-07" />
<meta name="dcterms.modified" scheme="W3CDTF" content="2010-08-07" />
<meta name="dc.subject" scheme="CLF 2.0" content="Common Look and Feel 2.0" />
<meta name="dc.language" scheme="ISO639-2/T" content="eng" />
<!-- METADATA ENDS | FIN DES METADONNEES -->
<?php include "includes/1col_script.php"; ?>
</head>
<body>
<div class="page">
<div class="core">
<?php include "includes/fip_banner.php"; ?>
<?php include "includes/1col_menu.php"; ?>
<!-- CONTENT BEGINS | DEBUT DU CONTENU -->
<div class="center">
<div class="blackborder" id="box1">
<h1><center>Subscription Verification</center></h1>
<br />

<center><h1>Success!</h1></center>
</div></div>
<!-- CONTENT ENDS | FIN DU CONTENU -->
<!-- THREE COLUMN LAYOUT ENDS | FIN DE LA MISE EN PAGE DE DEUX COLONNES -->
<!-- FOOTER BEGINS | DEBUT DU PIED DE LA PAGE -->
<?php include "includes/3col_footer.php"; ?>
</div></div>
</body>
</html>