change_password.php
author rejo
Wed, 27 Jun 2007 20:45:51 +0000
changeset 29 e1c60f72d494
parent 13 2ff220cfde13
child 47 ae140472d97c
permissions -rw-r--r--
[feladat @ 76] Changed some of the functions that are used for the listing of (all) zones. Instead of getting all zones from the database, it now only requests exactlty what it needs. Considerable perfomance improvement.

<?php
require_once("inc/i18n.inc.php");
require_once("inc/toolkit.inc.php");

if($_POST["submit"])
{
	if(strlen($_POST["newpass"]) < 8)
	{
		error('Password length should be at least 8 characters.');
	}
	else
	{
		change_user_pass($_POST["currentpass"], $_POST["newpass"], $_POST["newpass2"]);
	}
}

include_once("inc/header.inc.php");
?>
    <h2>Change password</h2>
    <form method="post" action="change_password.php">
     <table border="0" CELLSPACING="4">
      <tr>
       <td class="n"><? echo _('Current password'); ?>:</td>
       <td class="n"><input type="password" class="input" NAME="currentpass" value=""></td>
      </tr>
      <tr>
       <td class="n"><? echo _('New password'); ?>:</td>
       <td class="n"><input type="password" class="input" NAME="newpass" value=""></td>
      </tr>
      <tr>
       <td class="n"><? echo _('New password'); ?>:</td>
       <td class="n"><input type="password" class="input" NAME="newpass2" value=""></td>
      </tr>
      <tr>
       <td class="n">&nbsp;</td>
       <td class="n">
        <input type="submit" class="button" NAME="submit" value="<? echo _('Change password'); ?>">
       </td>
      </tr>
     </table>
    </form>

<?
include_once("inc/footer.inc.php");
?>