pictcode / app / View / top / contact.ctp @ 9af585b9
履歴 | 表示 | アノテート | ダウンロード (872 Bytes)
| 1 | c69e6898 | admin | <header> |
|---|---|---|---|
| 2 | <div class="container"> |
||
| 3 | <div class="row"> |
||
| 4 | <div class="col-lg-12"> |
||
| 5 | <div class="intro-text"> |
||
| 6 | <span class="name">お問い合わせ</span> |
||
| 7 | </div> |
||
| 8 | </div> |
||
| 9 | </div> |
||
| 10 | </div> |
||
| 11 | </header> |
||
| 12 | 33ddd711 | admin | <div class="contact form"> |
| 13 | <?php echo $this->Form->create('ContactValidate',array(
|
||
| 14 | 'inputDefaults' => array( |
||
| 15 | 'div' => 'form-group', |
||
| 16 | 'wrapInput' => false, |
||
| 17 | 'class' => 'form-control' |
||
| 18 | ), |
||
| 19 | 'class' => 'well')); ?> |
||
| 20 | <fieldset> |
||
| 21 | <legend><?php echo __('お問い合わせ'); ?></legend>
|
||
| 22 | <?php |
||
| 23 | echo $this->Form->input('name',array('label'=>'お名前'));
|
||
| 24 | echo $this->Form->input('mail',array('label'=>'メールアドレス'));
|
||
| 25 | echo $this->Form->input('comment',array('type'=>'textarea','label'=>'問い合わせ内容'));
|
||
| 26 | ?> |
||
| 27 | <?php echo $this->Form->submit('送信する',array('class'=>'btn btn-info')); ?>
|
||
| 28 | <?php echo $this->Form->end(); ?> |
||
| 29 | </div> |
||
| 30 | |||
| 31 | c69e6898 | admin | <?php echo $this->element('footer');?> |