blob: 459c96aa810d2ee011a4f2b1c9a0a66be44889e6 (
plain)
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
|
<html>
<head>
<title>Change password</title>
</head>
<body bgcolor="#e8e8e8">
<h3>Change password</h3>
<form action="passwd.cgi" method="post">
<table bgcolor="#cccccc" border=0 cellspacing=2>
<tr><th align="right">Username</th>
<td><input type="text" name="username" size="18"></td>
</tr>
<tr><th align="right">Domain</th>
<td><input type="text" name="domain" size="18"></td>
</tr>
<tr><th align="right">Current password</th>
<td><input type="password" name="old_password" size="18"></td>
</tr>
<tr><th align="right">New password</th>
<td><input type="password" name="new_password" size="18"></td>
</tr>
<tr><th align="right">Re-enter new password</th>
<td><input type="password" name="new_password2" size="18"></td>
</tr>
</table>
<br><input type="submit" value="Change password">
</body>
</html>
|