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$ */
|
|
|
|
|
2000-09-05 20:36:13 +02:00
|
|
|
$phpgw_info["flags"] = array("noheader" => True, "nonavbar" => True);
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2000-09-05 20:36:13 +02:00
|
|
|
$phpgw_info["flags"]["currentapp"] = "preferences";
|
2000-08-18 05:24:22 +02:00
|
|
|
include("../header.inc.php");
|
|
|
|
|
2000-12-13 11:26:44 +01:00
|
|
|
if (!$phpgw->acl->check("changepassword", 1)){
|
|
|
|
Header("Location: index.php");
|
2000-12-24 01:30:41 +01:00
|
|
|
$phpgw->common->phpgw_exit();
|
2000-12-13 11:26:44 +01:00
|
|
|
}
|
|
|
|
|
2000-10-31 12:50:35 +01:00
|
|
|
if (! $submit) {
|
|
|
|
$phpgw->common->phpgw_header();
|
2001-01-06 05:11:13 +01:00
|
|
|
echo parse_navbar();
|
2000-08-18 05:24:22 +02:00
|
|
|
|
|
|
|
?>
|
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-10-26 00:09:41 +02:00
|
|
|
<?php
|
|
|
|
if ($phpgw_info["server"]["auth_type"] != "ldap") {
|
|
|
|
echo "<pre>" . lang("note: This feature does *not* change your email password. This will "
|
|
|
|
. "need to be done manually.") . "</pre>";
|
|
|
|
}
|
|
|
|
$phpgw->common->phpgw_footer();
|
|
|
|
|
2000-08-18 05:24:22 +02:00
|
|
|
} else {
|
2001-01-04 21:29:28 +01:00
|
|
|
if ($n_passwd != $n_passwd_2)
|
|
|
|
$error = lang("the two passwords are not the same");
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2001-01-04 21:29:28 +01:00
|
|
|
if (! $n_passwd)
|
|
|
|
$error = lang("you must enter a password");
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2001-01-04 21:29:28 +01:00
|
|
|
if ($error) {
|
2001-01-06 05:11:13 +01:00
|
|
|
echo parse_navbar();
|
2001-01-04 21:29:28 +01:00
|
|
|
echo "<p><br>$error</p>";
|
|
|
|
$phpgw->common->phpgw_exit();
|
|
|
|
}
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2001-01-04 21:29:28 +01:00
|
|
|
$o_passwd = $phpgw_info["user"]["passwd"];
|
|
|
|
$passwd_changed = $phpgw->auth->change_password($o_passwd, $n_passwd);
|
|
|
|
if (!$passwd_changed){
|
|
|
|
// This need to be changed to show a different message based on the result
|
2001-01-05 08:59:46 +01:00
|
|
|
Header("Location: " . $phpgw->link($phpgw_info["server"]["webserver_url"] . "/preferences/","cd=38"));
|
2001-01-04 21:29:28 +01:00
|
|
|
}else{
|
|
|
|
$phpgw_info["user"]["passwd"] = $phpgw->auth->change_password($o_passwd, $n_passwd);
|
|
|
|
$phpgw->accounts->sync();
|
|
|
|
Header("Location: " . $phpgw->link($phpgw_info["server"]["webserver_url"] . "/preferences/","cd=18"));
|
|
|
|
}
|
2000-08-18 05:24:22 +02:00
|
|
|
}
|
2000-09-27 04:04:01 +02:00
|
|
|
?>
|