| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- <?php
- /*
- *
- * OGP - Open Game Panel
- * Copyright (C) 2008 - 2018 The OGP Development Team
- *
- * http://www.opengamepanel.org/
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- *
- */
- //Open Game Panel Free User Registration Add On By
- // MarkDogg18769
- define("RECAPTCHA_API_SERVER", "http://www.google.com/recaptcha/api");
- define("RECAPTCHA_API_SECURE_SERVER", "https://www.google.com/recaptcha/api");
- function exec_ogp_module()
- {
- global $db,$view,$settings;
-
- startSession();
- if( isset($_SESSION['ERRMSG_ARR']) && is_array($_SESSION['ERRMSG_ARR']) && count($_SESSION['ERRMSG_ARR']) >0 )
- {
- $errmsg = '<table>';
- foreach($_SESSION['ERRMSG_ARR'] as $msg)
- {
- $errmsg .= "<tr><td><img width='8px' src='images/offline.png'/></td><td style='text-align:left;color:red;'>".$msg.'</td></tr>';
- }
- $errmsg .= '</table><br>';
- unset($_SESSION['ERRMSG_ARR']);
- }
- echo "<h2>".get_lang('user_registration')."</h2>";
- if(isset($errmsg))
- {
- echo $errmsg;
- $input = $_SESSION['INPUT'];
- }
-
- $lang_switch = (isset($_GET['lang']) AND $_GET['lang'] != "-" )? "&lang=".$_GET['lang'] : "";
- ?>
- <style>
- .left {
- margin-left:auto;
- margin-right:auto;
- text-align:left;
- }
- .right
- {
- margin-left:auto;
- margin-right:auto;
- text-align:right;
- }
- </style>
- <?php
- require_once('includes/form_table_class.php');
-
- $ft = new FormTable();
- $ft->start_form("?m=register&p=exec$lang_switch", "post", "name=\"loginForm\"");
- $ft->start_table();
-
- $ft->add_field('string','login_name',@$input['users_login']);
- $ft->add_field('password','users_passwd','');
- $ft->add_field('password','users_cpasswd','');
- $ft->add_field('string','users_fname',@$input['users_fname']);
- $ft->add_field('string','users_lname',@$input['users_lname']);
- $ft->add_field('string','users_email',@$input['users_email']);
- $ft->add_field_hidden('users_comment',get_lang_f('registered_on', date("d/m/Y")) );
- echo "<tr><td> </td><td align='right'>";
-
- if(!empty($settings['recaptcha_site_key']) && !empty($settings['recaptcha_secret_key'])){
- $sitekey = $settings['recaptcha_site_key'];
- $secretkey = $settings['recaptcha_secret_key'];
- }else{
- require_once('captchakeys.php');
- }
- $use_ssl = ( isset($_SERVER['HTTPS']) and get_true_boolean($_SERVER['HTTPS']) ) ? true : false;
- echo recaptcha_get_html($sitekey,null,$use_ssl);
- echo "</td></tr>";
- $ft->end_table();
- $ft->add_button("submit","Submit",get_lang('register_a_new_user'));
- $ft->end_form();
- }
- function recaptcha_get_html ($pubkey, $error = null, $use_ssl = false)
- {
- if ($pubkey == null || $pubkey == '') {
- die ("To use reCAPTCHA you must get an API key from <a href='https://www.google.com/recaptcha/admin/create'>https://www.google.com/recaptcha/admin/create</a>");
- }
-
- if ($use_ssl) {
- $server = RECAPTCHA_API_SECURE_SERVER;
- } else {
- $server = RECAPTCHA_API_SERVER;
- }
- $errorpart = "";
- if ($error) {
- $errorpart = "&error=" . $error;
- }
-
- return "<script src='" . $server . ".js'></script><div style='display: inline-block;' class='g-recaptcha' data-sitekey='" . $pubkey . "'></div>";
-
- }
- ?>
|