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

portal/apply.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;
    }
    if (document.input.q_name.value == "") {
      alert("「名前」は必須項目ですので、何か入力してください。");
      return false;
    }
  }
// -->
</script>
  </head>
  <body onLoad="setfocus();">
    <h1 class="title">ポータルサイト - 申請</h1>
    <form name="input" action="apply.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>
          <td class="label">
            <span class="must">*</span> 名前(<span class="ak">N</span>):
          </td>
          <td>
            <input type="text" name="q_name" value=""
                   accesskey="n" tabindex="3"
                   maxlength="30" size="30">
          </td>
        </tr>
<!-- E-Mail -->
        <tr>
          <td class="label">
            E-Mail(<span class="ak">E</span>):
          </td>
          <td>
            <input type="text" name="q_email" value=""
                   accesskey="E" tabindex="4"
                   maxlength="80" size="50">
          </td>
        </tr>
<!-- ボタン -->
        <tr class="button">
          <td colspan="3">
            <input type="submit" value="登録(U)"
                   accesskey="U" tabindex="5">
            <input type="reset" value="クリア(C)"
                   accesskey="C" tabindex="6">
          </td>
        </tr>
      </table>
    </form>
    
    <p class="comment">* の付いた項目は必須項目です。</p>
    
    <div class="index">
      <a href="./" accesskey="L">ログイン(<span class="ak">L</span>)</a>
    </div>
  </body>
</html>

実行

この HTML を表示する。

戻る