[ホーム] -> [Apache + PHP + PostgreSQL 実験室]

portal/index.html

ソース

このソースをダウンロードする。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
 "http://www.w3.org/TR/html4/strict.dtd">
<html lang="ja">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=euc-jp">
    <meta http-equiv="Content-Style-Type" content="text/css">
    <meta http-equiv="Content-Script-Type" content="text/javascript">
    <link rel="stylesheet" type="text/css" href="main.css">
    <title>ポータルサイト - ログイン</title>
<script type="text/javascript">
<!--
  function setfocus() {
    if (document.input && document.input.q_userid) {
      document.input.q_userid.focus();
    }
  }
  function checkInput() {
    if (document.input.q_userid.value == "") {
      alert("「ユーザ ID」は必須項目ですので、何か入力してください。");
      return false;
    }
    if (document.input.q_password.value == "") {
      alert("「パスワード」は必須項目ですので、何か入力してください。");
      return false;
    }
  }
// -->
</script>
  </head>
  <body onLoad="setfocus();">
    <h1 class="title">ポータルサイト - ログイン</h1>
    <form name="input" action="top.php" method="POST"
          onsubmit="return checkInput();">
      <table class="input"
             summary="ログインするためのフォームです">
<!-- ユーザ ID -->
        <tr>
          <td class="label">
            <span class="must">*</span> ユーザ ID(<span class="ak">I</span>):
          </td>
          <td>
            <input type="text" name="q_userid" value=""
                   accesskey="i" tabindex="1"
                   maxlength="10" size="10">
          </td>
        </tr>
<!-- パスワード -->
        <tr>
          <td class="label">
            <span class="must">*</span> パスワード(<span class="ak">P</span>):
          </td>
          <td>
            <input type="password" name="q_password" value=""
                   accesskey="p" tabindex="2"
                   maxlength="30" size="30">
          </td>
        </tr>
<!-- ボタン -->
        <tr class="button">
          <td colspan="3">
            <input type="submit" value="ログイン(L)"
                   accesskey="L" tabindex="5">
            <input type="reset" value="クリア(C)"
                   accesskey="C" tabindex="6">
            <input type="hidden" name="q_method" value="login">
          </td>
        </tr>
      </table>
    </form>
    
    <p class="comment">* の付いた項目は必須項目です。</p>
    
    <p class="center">
      ユーザ ID を持っていないかたは、
      <a href="apply.html" accesskey="W">ユーザ登録(<span class="ak">W</span>)</a>
      (無料 <code>;-p</code>) してください。
    </p>
    
    <div class="index"><a href="../portal.html#portal">戻る</a></div>
  </body>
</html>

実行

この HTML を表示する。

戻る