示例#1
0
           |   __|     | | |  |  | -_| | |_ -|
           |_____|_|_|_|___|____/|___|\_/|___|
    Copyright (C) 2013 EmuDevs <http://www.emudevs.com/>
*/
account::isNotLoggedIn();
if (isset($_POST['save'])) {
    account::changeEmail($_POST['email'], $_POST['current_pass']);
}
?>
<div class='box_two_title'>Change Email</div>
<form action="?p=settings" method="post">
<table width="70%">
       <tr>
           <td>Email adress:</td> 
           <td><input type="text" name="email" value="<?php 
echo account::getEmail($_SESSION['cw_user']);
?>
"></td>
       </tr>
       <tr>
           <td></td> 
           <td><hr/></td>
       </tr>
       <tr>
           <td>Enter your current password:</td> 
           <td><input type="password" name="current_pass"></td>
       </tr>
       
       <tr>
           <td></td> 
           <td><input type="submit" value="Save" name="save"></td>
示例#2
0
    ?>
Account selected: <a href='?p=users&s=manage&user=<?php 
    echo $_GET['editaccount'];
    ?>
'><?php 
    echo $account->getAccName($_GET['editaccount']);
    ?>
</a><p />
   <table width="100%">
	<input type="hidden" id="account_id" value="<?php 
    echo $_GET['editaccount'];
    ?>
" />
		   <tr><td>Email</td> <td><input type="text" id="edit_email" class='noremove' 
		   value="<?php 
    echo $account->getEmail($_GET['editaccount']);
    ?>
"/> </tr> 
		   <tr><td>Set Password</td><td><input type="text" id="edit_password" class='noremove'/></td></tr>
		   <tr><td>Vote Points</td> <td><input type="text" id="edit_vp" value="<?php 
    echo $account->getVP($_GET['editaccount']);
    ?>
" class='noremove'/> </tr>
		   <tr><td><?php 
    echo $GLOBALS['donation']['coins_name'];
    ?>
</td> 
									<td><input type="text" id="edit_dp" value="<?php 
    echo $account->getDP($_GET['editaccount']);
    ?>
" class='noremove'/></td></tr>
示例#3
0
    $validLogin = $account->loginExists($_POST['login']);
    $emailSent = FALSE;
    if ($validLogin) {
        // Set a new token for the user.
        $token = $account->setToken($_POST['login']);
        // Create and send the email.
        $subject = $common->getSetting("siteName") . " Password Reset Request";
        $message = "A password reset request has been received by your ADS-B portal.\r\n";
        $message .= "\r\n";
        $message .= "If you did not request this password reset simply disregard this email.\r\n";
        $message .= "If in fact you did request a password reset follow the link below to do so.\r\n";
        $message .= "\r\n";
        $message .= "http://" . $_SERVER['HTTP_HOST'] . "/admin/reset.php?token=" . $token . "\r\n";
        $message .= "\r\n";
        $message .= "Your password reset token is: " . $token;
        $emailSent = $common->sendEmail($account->getEmail($_POST['login']), $subject, $message);
    }
}
/////////////////////
// BEGIN HTML BODY //
?>
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8" />
        <title></title>
        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" />
        <link rel="stylesheet" href="assets/css/forgot.css" />
    </head>
    <body>
示例#4
0
                <div class="panel-body">
                    <div class="form-group">
                        <input type="text" class="form-control" name="login" id="login" placeholder="Login" value="<?php 
echo $_SESSION['login'];
?>
" disabled>
                    </div>
                    <div class="form-group">
                        <input type="text" class="form-control" name="name" id="name" placeholder="Name" value="<?php 
echo $account->getName($_SESSION['login']);
?>
" required>
                    </div>
                    <div class="form-group">
                        <input type="email" class="form-control" name="email" id="email" placeholder="Email Address" value="<?php 
echo $account->getEmail($_SESSION['login']);
?>
" required>
                    </div>
                </div>
            </div>

            <div class="panel panel-default">
                <div class="panel-heading">Change Password</div>
                <div class="panel-body">
                    <div class="form-group">
                        <input type="password" class="form-control" name="password" id="password" placeholder="Current Password">
                    </div>
                    <div class="form-group">
                        <input type="password" class="form-control" name="password1" id="password1" placeholder="New Password" required>
                    </div>