forked from poweradmin/poweradmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
change_password.php
45 lines (42 loc) · 1.21 KB
/
change_password.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?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"> </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");
?>