pictcode / app / View / top / contact_confirm.ctp @ 13c8314a
履歴 | 表示 | アノテート | ダウンロード (1.651 KB)
1 | b3a58ce1 | hasse | <!-- お問い合わせ 内容確認 --> |
---|---|---|---|
2 | <main role="main"> |
||
3 | <article class="contact"> |
||
4 | <h2> |
||
5 | <img src="/img/img_h1_contact02.png" alt="お問い合わせ - 送信内容確認"> |
||
6 | </h2> |
||
7 | <p>ご記入内容に誤りがないかをご確認ください。内容に誤りがある場合には「修正する」ボタンを押して修正を、問題がないようでしたら「送信する」ボタンを押して送信してください。</p> |
||
8 | <hr> |
||
9 | <section> |
||
10 | <dl> |
||
11 | <dt><label for="">お名前</label></dt> |
||
12 | <dd><?php echo $contact['ContactValidate']['name'];?></dd> |
||
13 | <dt><label for="">メールアドレス</label></dt> |
||
14 | <dd><?php echo $contact['ContactValidate']['email'];?></dd> |
||
15 | 0a142321 | hasse | <?php |
16 | if($contact['ContactValidate']['postcode']!= null){ |
||
17 | echo '<dt><label for="">郵便番号</label></dt><dd>'.$contact['ContactValidate']['postcode'].'</dd>'; |
||
18 | } |
||
19 | if($contact['ContactValidate']['prefecture']!= null||$contact['ContactValidate']['address']!= null){ |
||
20 | echo '<dt><label for="">ご住所</label></dt><dd>'.$contact['ContactValidate']['prefecture'].$contact['ContactValidate']['address'].'</dd>'; |
||
21 | } |
||
22 | if($contact['ContactValidate']['tel']!= null){ |
||
23 | echo '<dt><label for="">お電話番号</label></dt><dd>'.$contact['ContactValidate']['tel'].'</dd>'; |
||
24 | } |
||
25 | ?> |
||
26 | |||
27 | b3a58ce1 | hasse | <dt><label for="">お問い合わせ内容</label></dt> |
28 | 0a142321 | hasse | <dd><?php echo $contact['ContactValidate']['comment']?></dd> |
29 | b3a58ce1 | hasse | </dl> |
30 | </section> |
||
31 | <section class="button_area01"> |
||
32 | <a href="javascript:history.back();"><p class="button btn_alter01"></p></a> |
||
33 | <a href="/top/contact_complete"><p class="button btn_submit"></p></a> |
||
34 | </section> |
||
35 | </article> |
||
36 | </main> |