File "change.php"
Full path: C:/xampp/htdocs/www_real-20250703105326/change.php
File
size: 1.72 B
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
<?php
// This AION Brasil
require "header.php";
?>
<div class="case">
<div class="content">
<div class="news">
<div class="news-title">Mudar a Senha</div>
<div>
<table align="center">
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST">
<tr>
<td width="150px">Login:</td>
<td><input type="text" class="field-reg" name="name" ></td>
</tr>
<tr>
<td width="150px">Senha Antiga:</td>
<td><input type="password" class="field-reg" name="old_pass" ></td>
</tr>
<tr>
<td width="150px">Nova Senha:</td>
<td><input type="password" class="field-reg" name="new_pass1" ></td>
</tr>
<tr>
<td width="150px">Repita a Senha:</td>
<td><input type="password" class="field-reg" name="new_pass2"></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" class="button-submit dark-shadow" value="Mudar" name="submit" ></td>
</tr>
</form>
</table>
<?php require "modules/change_m.php"; ?>
<?php if(!empty($change_error)) echo '<div class="error" align="center">'.$change_error.'</div>'; ?>
<?php if(!empty($change_success)) echo '<div class="accept" align="center">'.$change_success.'</div>'; ?>
</div>
</div>
</div>
<?php require "sidebar.php"; ?>
</div>
<?php require "footer.php"; ?>