Fix add user in settings
This commit is contained in:
parent
82aaca7eea
commit
556f246b81
4 changed files with 47 additions and 25 deletions
|
@ -25,8 +25,16 @@ class Users{
|
|||
$cpass = "";
|
||||
$email = "";
|
||||
}
|
||||
|
||||
if ( helpers :: check_if_game_client() or isset($FORCE_INGAME) ) {
|
||||
if ( isset( $_POST["TaC"] )) {
|
||||
$tac="success";
|
||||
}
|
||||
} else {
|
||||
$tac="success";
|
||||
}
|
||||
|
||||
if ( ( $user == "success" ) and ( $pass == "success" ) and ( $cpass == "success" ) and ( $email == "success" ) and ( isset( $_POST["TaC"] ) ) ){
|
||||
if ( ( $user == "success" ) and ( $pass == "success" ) and ( $cpass == "success" ) and ( $email == "success" ) and ($tac=="success") ){
|
||||
return "success";
|
||||
}else{
|
||||
global $TOS_URL;
|
||||
|
|
|
@ -15,6 +15,8 @@ function add_user(){
|
|||
//check if the POST variables are valid, before actual registering
|
||||
$result = $webUser->check_Register($params);
|
||||
|
||||
global $SITEBASE;
|
||||
require_once($SITEBASE . '/inc/settings.php');
|
||||
// if all are good then create user
|
||||
if ( $result == "success"){
|
||||
$edit = array(
|
||||
|
@ -32,19 +34,26 @@ function add_user(){
|
|||
header('Location: email_sent.php');
|
||||
exit;
|
||||
}
|
||||
$pageElements['status'] = $status;
|
||||
$pageElements['no_visible_elements'] = 'TRUE';
|
||||
$pageElements['ingame_webpath'] = $INGAME_WEBPATH;
|
||||
helpers :: loadtemplate( 'register_feedback', $pageElements);
|
||||
$pageElements = settings();
|
||||
$pageElements['ingame_webpath'] = $INGAME_WEBPATH;
|
||||
$pageElements['permission'] = unserialize($_SESSION['ticket_user'])->getPermission();
|
||||
$pageElements['SUCCESS_ADD'] = $status;
|
||||
if (isset($_GET['page']) && $_GET['page']=="settings"){
|
||||
helpers :: loadtemplate( 'settings', $pageElements);
|
||||
}else{
|
||||
$pageElements['no_visible_elements'] = 'TRUE';
|
||||
helpers :: loadtemplate( 'register_feedback', $pageElements);
|
||||
}
|
||||
exit;
|
||||
}elseif ($_POST['page']=="settings"){
|
||||
}elseif (isset($_GET['page']) && $_GET['page']=="settings"){
|
||||
$pageElements = array_merge(settings(), $result);
|
||||
// pass error and reload template accordingly
|
||||
$result['prevUsername'] = $_POST["Username"];
|
||||
$result['prevPassword'] = $_POST["Password"];
|
||||
$result['prevConfirmPass'] = $_POST["ConfirmPass"];
|
||||
$result['prevEmail'] = $_POST["Email"];
|
||||
$result['no_visible_elements'] = 'TRUE';
|
||||
helpers :: loadtemplate( 'settings', $result);
|
||||
$pageElements['prevUsername'] = $_POST["Username"];
|
||||
$pageElements['prevPassword'] = $_POST["Password"];
|
||||
$pageElements['prevConfirmPass'] = $_POST["ConfirmPass"];
|
||||
$pageElements['prevEmail'] = $_POST["Email"];
|
||||
$pageElements['permission'] = unserialize($_SESSION['ticket_user'])->getPermission();
|
||||
helpers :: loadtemplate( 'settings', $pageElements);
|
||||
exit;
|
||||
}else{
|
||||
// pass error and reload template accordingly
|
||||
|
|
|
@ -71,6 +71,7 @@ function change_mail(){
|
|||
$result['isMod'] = "TRUE";
|
||||
}
|
||||
}
|
||||
$result['CEMAIL_ERROR'] = true;
|
||||
helpers :: loadtemplate( 'settings', $result);
|
||||
exit;
|
||||
}
|
||||
|
@ -83,7 +84,7 @@ function change_mail(){
|
|||
}
|
||||
|
||||
}else{
|
||||
//ERROR: The form was not filled in correclty
|
||||
//ERROR: The form was not filled in correctly
|
||||
header("Location: index.php?page=settings");
|
||||
exit;
|
||||
}
|
||||
|
|
|
@ -83,56 +83,60 @@
|
|||
<form id="addUser" class="form-vertical" method="post" action="index.php?page=settings&id={$target_id}">
|
||||
<legend>Add User</legend>
|
||||
|
||||
<div class="control-group">
|
||||
<div class="control-group {if isset($USERNAME_ERROR) and $USERNAME_ERROR eq "TRUE"}error{/if}">
|
||||
<label class="control-label">Username</label>
|
||||
<div class="controls">
|
||||
<div class="input-prepend">
|
||||
<span style="margin-left:5px;" class="add-on"><i class="icon-user"></i></span>
|
||||
<input type="text" placeholder="Username" name="Username" id="Username" class="input-xlarge">
|
||||
<input type="text" placeholder="Username" name="Username" id="Username" class="input-xlarge" {if isset($prevUsername)}value="{$prevUsername}"{/if}>
|
||||
{if isset($USERNAME_ERROR) and $USERNAME_ERROR eq "TRUE"}<span class="help-inline">{$USERNAME}</span>{/if}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="control-group ">
|
||||
<div class="control-group {if isset($PASSWORD_ERROR) and $PASSWORD_ERROR eq "TRUE"}error{/if}">
|
||||
<label class="control-label">Password</label>
|
||||
<div class="controls">
|
||||
<div class="input-prepend">
|
||||
<span style="margin-left:5px;" class="add-on"><i class="icon-lock"></i></span>
|
||||
<input type="password" placeholder="Password" name="Password" id="Password" class="input-xlarge">
|
||||
{if isset($PASSWORD_ERROR) and $PASSWORD_ERROR eq "TRUE"}<span class="help-inline">{$PASSWORD}</span>{/if}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="control-group ">
|
||||
<div class="control-group {if isset($CPASSWORD_ERROR) and $CPASSWORD_ERROR eq "TRUE"}error{/if}">
|
||||
<label class="control-label">Confirm Password</label>
|
||||
<div class="controls">
|
||||
<div class="input-prepend">
|
||||
<span style="margin-left:5px;" class="add-on"><i class="icon-lock"></i></span>
|
||||
<input type="password" placeholder="Confirm Password" name="ConfirmPass" id="ConfirmPass" class="input-xlarge">
|
||||
{if isset($CPASSWORD_ERROR) and $CPASSWORD_ERROR eq "TRUE"}<span class="help-inline">{$CPASSWORD}</span>{/if}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="control-group ">
|
||||
<div class="control-group {if isset($EMAIL_ERROR) and $EMAIL_ERROR eq "TRUE"}error{/if}">
|
||||
<label class="control-label">Email</label>
|
||||
<div class="controls">
|
||||
<div class="input-prepend">
|
||||
<span style="margin-left:5px;" class="add-on"><i class="icon-envelope"></i></span>
|
||||
<input type="text" placeholder="Email" name="Email" id="Email" class="input-xlarge">
|
||||
<input type="text" class="input-xlarge" id="Email" name="Email" placeholder="Email" {if isset($prevEmail)}value="{$prevEmail}"{/if}>
|
||||
{if isset($EMAIL_ERROR) and $EMAIL_ERROR eq "TRUE"}<span class="help-inline">{$EMAIL}</span>{/if}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
{if isset($SUCCESS_PASS) and $SUCCESS_PASS eq "OK"}
|
||||
{if isset($SUCCESS_ADD) and $SUCCESS_ADD eq "ok"}
|
||||
<div class="alert alert-success">
|
||||
The user is created!
|
||||
The user has been created!
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
{if isset($SUCCESS_PASS) and $SUCCESS_PASS eq "SHARDOFF"}
|
||||
{if isset($SUCCESS_ADD) and $SUCCESS_ADD eq "shardoffline"}
|
||||
<div class="alert alert-warning">
|
||||
The user can't be created.
|
||||
The user is created, though the shard seems offline, it may take some time to see the change on the shard.
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
|
@ -158,13 +162,13 @@
|
|||
<div class="row-fluid">
|
||||
<form id="changeEmail" class="form-vertical" method="post" action="index.php?page=settings&id={$target_id}">
|
||||
<legend>Change Email</legend>
|
||||
<div class="control-group {if isset($EMAIL_ERROR) and $EMAIL_ERROR eq "TRUE"}error{/if}">
|
||||
<div class="control-group {if isset($CEMAIL_ERROR) and $CEMAIL_ERROR eq "TRUE"}error{/if}">
|
||||
<label class="control-label">New Email</label>
|
||||
<div class="controls">
|
||||
<div class="input-prepend">
|
||||
<span class="add-on" style="margin-left:5px;"><i class="icon-envelope"></i></span>
|
||||
<input type="text" class="input-xlarge" id="NewEmail" name="NewEmail" placeholder="Your new email" {if isset($prevNewEmail)}value="{$prevNewEmail}"{else if isset($current_mail)}value="{$current_mail}"{/if}>
|
||||
{if isset($EMAIL_ERROR) and $EMAIL_ERROR eq "TRUE"}<span class="help-inline">{$EMAIL}</span>{/if}
|
||||
{if isset($CEMAIL_ERROR) and $CEMAIL_ERROR eq "TRUE"}<span class="help-inline">{$EMAIL}</span>{/if}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue