pictcode / app / View / users / login.ctp @ db36f2d4
履歴 | 表示 | アノテート | ダウンロード (2.753 KB)
| 1 | ceb21f43 | hasse | <?php $this->set('title_for_layout','Login'); ?>
|
|---|---|---|---|
| 2 | <!-- メインコンテンツ --> |
||
| 3 | <main role="main"> |
||
| 4 | <article class="large_form"> |
||
| 5 | <h2> |
||
| 6 | <img src="/img/img_h1_login.png" alt="PictCode ログイン"> |
||
| 7 | </h2> |
||
| 8 | <p class="">ほぞんデータを かんりするためには、ニックネームと パスワードを 入力して ログインする ひつようが あります。 入力に まちがいがないように 注意してください。</p> |
||
| 9 | <?php echo $this->Form->create('User',array(
|
||
| 10 | 'div' => false, |
||
| 11 | 8b8631af | hasse | 'novalidate' => true, |
| 12 | 'inputDefaults' => array( |
||
| 13 | 'before' => '<dt>', |
||
| 14 | 'between' => '</dt><dd>', |
||
| 15 | 'after' => '</dd>', |
||
| 16 | 'div' => false |
||
| 17 | ) |
||
| 18 | ceb21f43 | hasse | )); ?> |
| 19 | <fieldset> |
||
| 20 | <section> |
||
| 21 | <dl> |
||
| 22 | <?php |
||
| 23 | 8b8631af | hasse | echo $this->Form->input('login_id',
|
| 24 | ceb21f43 | hasse | array( 'type' => 'text', |
| 25 | 8b8631af | hasse | 'label' => 'ニックネーム', |
| 26 | ceb21f43 | hasse | 'placeholder'=>'ニックネーム' |
| 27 | )); |
||
| 28 | 8b8631af | hasse | echo $this->Form->input('password',
|
| 29 | ceb21f43 | hasse | array( 'placeholder'=>'パスワード', |
| 30 | 8b8631af | hasse | 'label' => 'パスワード', |
| 31 | ceb21f43 | hasse | 'maxlength' => '50', |
| 32 | 'type' => 'password' |
||
| 33 | )); |
||
| 34 | ?> |
||
| 35 | </dl> |
||
| 36 | </section> |
||
| 37 | 8b8631af | hasse | </fieldset> |
| 38 | b3a58ce1 | hasse | <?php echo $this->Flash->render('positive') ?>
|
| 39 | ceb21f43 | hasse | <section> |
| 40 | 67acbfb5 | hasse | <p>ニックネームや パスワードを 忘れたばあいには お父さんや お母さんに 相談して、<br><a href="reset_pwd"><span class="link_reminder">コチラ</span></a>を クリックして パスワードを 再はっこうしてもらってね!</p> |
| 41 | ceb21f43 | hasse | </section> |
| 42 | <section class="button_area01"> |
||
| 43 | <a href="/top/index"><p class="button btn_back02"></p></a> |
||
| 44 | b3a58ce1 | hasse | <?php echo $this->Form->submit('',array('class'=>'button btn_login')); ?>
|
| 45 | 8b8631af | hasse | <?php echo $this->Form->end(); ?> |
| 46 | ceb21f43 | hasse | </section> |
| 47 | </article> |
||
| 48 | </main> |
||
| 49 | |||
| 50 | |||
| 51 |