|
Revision 15733, 1.1 kB
(checked in by heavenshell, 5 years ago)
|
|
Add views
|
| Line | |
|---|
| 1 | <div style="margin: 20px;"> |
|---|
| 2 | <h1>ユーザ登録 (無料)</h1> |
|---|
| 3 | <?php if (isset($errors)): ?> |
|---|
| 4 | <?php echo $this->FormErrors($errors); ?> |
|---|
| 5 | <?php endif; ?> |
|---|
| 6 | <form action="/account/create" method="POST"> |
|---|
| 7 | <table> |
|---|
| 8 | <tr> |
|---|
| 9 | <td>ユーザ名(必須)</td> |
|---|
| 10 | <td> |
|---|
| 11 | <input type="text" name="name" cols="40" id="username" maxlength="100" value="<?= $name ?>" /> |
|---|
| 12 | <div id="username_msg" class="input">ユーザ名は英数字と'_'が使えます</div> |
|---|
| 13 | </td> |
|---|
| 14 | </tr> |
|---|
| 15 | <tr> |
|---|
| 16 | <td>パスワード(必須)</td> |
|---|
| 17 | <td> |
|---|
| 18 | <input type="password" name="password" cols="40" maxlength="64" value="<?= $password ?>" />6文字以上 |
|---|
| 19 | </td> |
|---|
| 20 | </tr> |
|---|
| 21 | <tr> |
|---|
| 22 | <td>メールアドレス(必須)</td> |
|---|
| 23 | <td> |
|---|
| 24 | <input type="text" name="email" cols="40" id="email" maxlength="255" value="<?= $email ?>" /> |
|---|
| 25 | </td> |
|---|
| 26 | </tr> |
|---|
| 27 | </table> |
|---|
| 28 | <input type="hidden" name="token" value="<?= $token ?>" /> |
|---|
| 29 | <p class="btn btnSpace"> |
|---|
| 30 | <input type="submit" class="formBtn" name="finish" value= "登録する" /> |
|---|
| 31 | </p> |
|---|
| 32 | </form> |
|---|
| 33 | </div> |
|---|