パスワード変更CGI

  説明   CGI
スクリプト
  CGI
呼び出し

パスワード変更CGIを呼び出すページ

以下にパスワード変更のCGIを呼び出すhtmlファイルの例を示します。

<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>

上記のようにパスワードは変更の場合はGETを使うとパスワード がURLの後についた形で渡されるので,POSTを使ったほうが安全です。

FC Labのホームへ 「ネットワークプログラミング」のページへ