egroupware/preferences/changepassword.php

85 lines
2.9 KiB
PHP
Raw Normal View History

2000-08-18 05:24:22 +02:00
<?php
/**************************************************************************\
* phpGroupWare - preferences *
* http://www.phpgroupware.org *
* Written by Joseph Engo <jengo@phpgroupware.org> *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
$phpgw_info["flags"] = array("noheader" => True, "nonavbar" => True);
2000-08-18 05:24:22 +02:00
$phpgw_info["flags"]["currentapp"] = "preferences";
2000-08-18 05:24:22 +02:00
include("../header.inc.php");
if ($phpgw_info["user"]["permissions"]["anonymous"]) {
Header("Location: " . $phpgw->link($phpgw_info["server"]["webserver_url"] . "/"));
exit;
}
if (! $submit) {
$phpgw->common->header();
$phpgw->common->navbar();
?>
2000-09-05 04:45:44 +02:00
<form method="POST" acion="<?php echo $phpgw->link("changepassword.php"); ?>">
2000-08-18 05:24:22 +02:00
<table border="0">
<tr>
<td>
2000-09-07 23:35:30 +02:00
<?php echo lang("enter your new password"); ?>
2000-08-18 05:24:22 +02:00
</td>
<td>
<input type="password" name="n_passwd">
</td>
</tr>
<tr>
<td>
2000-09-07 23:35:30 +02:00
<?php echo lang("re-enter your password"); ?>
2000-08-18 05:24:22 +02:00
</td>
<td>
<input type="password" name="n_passwd_2">
</td>
</tr>
<tr>
<td colspan="2">
2000-09-07 23:35:30 +02:00
<input type="submit" name="submit" value="<?php echo lang("change"); ?>">
2000-08-18 05:24:22 +02:00
</td>
</tr>
</table>
</form>
<br>
2000-09-07 23:35:30 +02:00
<pre><?php echo lang("note: This feature does *not* change your email password. This will "
2000-08-18 05:24:22 +02:00
. "need to be done manually."); ?>
</pre>
<?php
2000-08-21 07:47:57 +02:00
include($phpgw_info["server"]["api_dir"] . "/footer.inc.php");
2000-08-18 05:24:22 +02:00
} else {
if ($n_passwd != $n_passwd_2)
2000-09-07 23:35:30 +02:00
$error = lang("the two passwords are not the same");
2000-08-18 05:24:22 +02:00
if (! $n_passwd)
2000-09-07 23:35:30 +02:00
$error = lang("you must enter a password");
2000-08-18 05:24:22 +02:00
if ($error) {
phpgw_navbar();
echo "<p><br>$error</p>";
exit;
}
$phpgw->db->query("update accounts set account_pwd='" . md5($n_passwd) . "', "
. "account_lastpwd_change='" . time() . "' where account_lid='"
. $phpgw_info["user"]["userid"] . "'");
2000-08-18 05:24:22 +02:00
// Since they are logged in, we need to change the password in sessions
// in case they decied to check there mail.
$phpgw->db->query("update sessions set session_pwd='" . $phpgw->common->encrypt($n_passwd)
. "' where session_lid='" . $phpgw_info["user"]["userid"] . "'");
2000-08-18 05:24:22 +02:00
Header("Location: " . $phpgw->link($phpgw_info["server"]["webserver_url"]
. "/preferences/","cd=18"));
}