| <?php |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| require_once( 'core.php' ); |
| |
| $t_core_path = config_get( 'core_path' ); |
| |
| require_once( $t_core_path . 'email_api.php' ); |
| require_once( $t_core_path . 'disposable' . DIRECTORY_SEPARATOR . 'disposable.php' ); |
| |
| form_security_validate( 'signup' ); |
| |
| $f_username = strip_tags( gpc_get_string( 'username' ) ); |
| $f_email = strip_tags( gpc_get_string( 'email' ) ); |
| $f_captcha = gpc_get_string( 'captcha', '' ); |
| $f_public_key = gpc_get_int( 'public_key', '' ); |
| |
| $f_username = trim( $f_username ); |
| $f_email = email_append_domain( trim( $f_email ) ); |
| $f_captcha = strtolower( trim( $f_captcha ) ); |
| |
| |
| if( auth_is_user_authenticated() ) { |
| auth_logout(); |
| } |
| |
| |
| if ( OFF == config_get( 'allow_signup' ) ) { |
| print_header_redirect( 'login_page.php' ); |
| exit; |
| } |
| |
| if( ON == config_get( 'signup_use_captcha' ) && get_gd_version() > 0 && |
| helper_call_custom_function( 'auth_can_change_password', array() ) ) { |
| |
| |
| $t_key = strtolower( substr( md5( config_get( 'password_confirm_hash_magic_string' ) . $f_public_key ), 1, 5) ); |
| |
| if ( $t_key != $f_captcha ) { |
| trigger_error( ERROR_SIGNUP_NOT_MATCHING_CAPTCHA, ERROR ); |
| } |
| } |
| |
| email_ensure_not_disposable( $f_email ); |
| |
| |
| if( user_signup( $f_username, $f_email ) ) { |
| email_notify_new_account( $f_username, $f_email ); |
| } |
| |
| html_page_top1(); |
| |
| html_page_top2a(); |
| ?> |
| |
| |
| <h1><?php echo lang_get( 'signup_done_title' ) ?></h1> |
| |
| <div id="signup_messages"> |
| |
| <p><?php echo "[$f_username - $f_email] " ?></p> |
| |
| <p><?php echo lang_get( 'password_emailed_msg' ) ?></p> |
| |
| <p><?php echo lang_get( 'no_reponse_msg') ?></p> |
| |
| <p><?php print_bracket_link( 'login_page.php', lang_get( 'proceed' ) ); ?></p> |
| |
| </div> |
| |
| <?php html_page_bottom1a( __FILE__ ) ?> |