57 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
<?php
 | 
						|
/*
 | 
						|
 ----------------------------------------------------------------------
 | 
						|
 LICENSE
 | 
						|
 | 
						|
 This program is free software; you can redistribute it and/or
 | 
						|
 modify it under the terms of the GNU General Public License (GPL)
 | 
						|
 as published by the Free Software Foundation; either version 2
 | 
						|
 of the License, or (at your option) 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.
 | 
						|
 | 
						|
 To read the license please visit http://www.gnu.org/copyleft/gpl.html
 | 
						|
 ----------------------------------------------------------------------
 | 
						|
*/
 | 
						|
 | 
						|
/**
 | 
						|
 * Change the email of an account, STEP 2
 | 
						|
 *
 | 
						|
 * @copyright AlternC-Team 2000-2017 https://alternc.com/
 | 
						|
 */
 | 
						|
 | 
						|
require_once("../class/config_nochk.php");
 | 
						|
include_once("head.php");
 | 
						|
 | 
						|
$fields = array (
 | 
						|
	"usr" => array ("request", "integer", 0),
 | 
						|
	"cookie" => array ("request", "string", ""),
 | 
						|
	"cle" => array("request","string",""),
 | 
						|
);
 | 
						|
getFields($fields);
 | 
						|
 | 
						|
?>
 | 
						|
<h3><?php __("Change the email of the account"); ?></h3>
 | 
						|
<?php
 | 
						|
echo $msg->msg_html_all();
 | 
						|
if ($msg->has_msgs("ERROR")) {
 | 
						|
	echo "<p><span class='ina'><a href='mem_param.php'>"._("Click here to continue")."</a></span></p>";
 | 
						|
	include_once("foot.php");
 | 
						|
	exit();
 | 
						|
}
 | 
						|
?>
 | 
						|
<form method="post" action="mem_cm2.php">
 | 
						|
  <?php csrf_get(); ?>
 | 
						|
	<table border="1" cellspacing="0" cellpadding="4">
 | 
						|
		<tr><td colspan="2"><input type="hidden" name="usr" value="<?php ehe($usr); ?>" /><input type="hidden" name="cookie" value="<?php ehe($cookie); ?>" />
 | 
						|
<?php __("Change the email of the account"); ?><br />
 | 
						|
		<?php __("Enter the key you got when you requested the mailbox change, then click the OK button."); ?></td></tr>
 | 
						|
		<tr><th><label for="cle"><?php __("Key"); ?></label></th><td><input type="text" class="int" name="cle" id="cle" value="<?php ehe($cle); ?>" size="8" maxlength="8" /></td></tr>
 | 
						|
		<tr><td align="center" colspan="3"><input type="submit" class="inb" name="submit" value="<?php __("OK"); ?>" /></td></tr>
 | 
						|
	</table>
 | 
						|
</form>
 | 
						|
<?php include_once("foot.php"); ?>
 |