<html>
<head>
<title>password change</title>
</head>
<body>
<h1>パスワード変更</h1>
<BODY BGCOLOR="#ff6060">
<form action="chpw.cgi" method="post">
<input type="hidden" name="hostname" value="localhost">
<table>
<tr><td>ログイン名</td><td><input type="text" name="username"></td><tr>
<tr><td>旧パスワード</td><td>
<input type="password" name="password"></td><tr>
<tr><td>新パスワード</td><td>
<input type="password" name="newpw1"></td><tr>
<tr><td></td><td>
<input type="password" name="newpw2">
確認のためにもう一度パスワードを入力してください
</td><tr>
</table>
<input type="submit" value="変更">
<input type="reset" value="中止">
</table>
</form>
</body>
</html>
|