Advertisement
Guest User

Note: Friday, August 22, 2014:9:20 PM

a guest
Aug 22nd, 2014
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.71 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3.     <head>
  4.         <?php
  5.         require_once('recaptchalib.config.php');
  6.         require_once('recaptchalib.php');
  7.         ?>
  8.         <title>Registration Page</title>
  9.         <meta http-equiv="content-type" content="text/html;charset=utf-8" />
  10.         <meta http-equiv="Content-Style-Type" content="text/css" />
  11.         <style type="text/css">#error {color:#ff0000; list-style:none;}</style>
  12.         <script type="text/javascript">var RecaptchaOptions = {theme:'clean'};</script>
  13.     </head>
  14.     <body>
  15.         <h3>Account Registration</h3>
  16.         <form action="verify.php" method="post">
  17.             <div style="width:436px; border:1px solid #000000; padding:16px;">
  18.                 User Name
  19.                 <input name="username" value="<?php if(isset($_POST['username'])){ echo $_POST['username']; } ?>" style="width:100%;" />
  20.                 <div style="height: 5px;">&nbsp;</div>
  21.                 Password                           
  22.                 <input name="password" type="password" value="<?php if(isset($_POST['password'])){ echo $_POST['password']; } ?>" style="width:100%;" />
  23.                 <div style="height: 5px;">&nbsp;</div>
  24.                 Confirm Password                           
  25.                 <input name="password2" type="password" value="<?php if(isset($_POST['password2'])){ echo $_POST['password2']; } ?>" style="width:100%;" />
  26.                 <div style="height: 5px;">&nbsp;</div>
  27.                 Email              
  28.                 <input name="email" style="width:100%;" />
  29.                 <div style="height: 5px;">&nbsp;</div>
  30.                 Please type this in the text box below to prove you are human
  31.                 <?php echo recaptcha_get_html($recaptcha_public_key); ?>
  32.                 <div style="height: 5px;">&nbsp;</div>
  33.                 <input type="submit" name="submit" value="Create Account" />
  34.             </div>
  35.         </form>
  36.     </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement