Newer
Older
hello-programmer-world / public / sample / php / form / 1 / submit.php
<!DOCTYPE html>
<html lang="ja">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>応募完了</title>

  <style>
    .container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 16px;

      height: 100svh;
    }

    .bordered-table {
      border-collapse: collapse;

      th,
      td {
        border: 1px solid darkgray;
        padding: 8px;
      }
    }
  </style>
</head>

<body>
  <div class="container">
    <div>応募ありがとうございました!</div>

    <table class="bordered-table">
      <tr>
        <th>お名前</th>
        <td></td>
      </tr>
      <tr>
        <th>住所</th>
        <td></td>
      </tr>
      <tr>
        <td>応募する商品</td>
        <td></td>
      </tr>
    </table>

    <a href="./form.html">応募ページに戻る</a>
  </div>
</body>

</html>