source: branches/version-2_13_0/data/Smarty/templates/default/contact/confirm.tpl @ 23103

Revision 23103, 4.5 KB checked in by h_yoshimoto, 11 years ago (diff)

#2342 一旦戻した内容を再度適用

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-smarty-template; charset=UTF-8
Line 
1<!--{*
2 * This file is part of EC-CUBE
3 *
4 * Copyright(c) 2000-2013 LOCKON CO.,LTD. All Rights Reserved.
5 *
6 * http://www.lockon.co.jp/
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
21 *}-->
22
23<div id="undercolumn">
24    <h2 class="title"><!--{$tpl_title|h}--></h2>
25    <div id="undercolumn_contact">
26        <p>下記入力内容で送信してもよろしいでしょうか?<br />
27            よろしければ、一番下の「完了ページへ」ボタンをクリックしてください。</p>
28        <form name="form1" id="form1" method="post" action="?">
29            <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
30            <input type="hidden" name="mode" value="complete" />
31            <!--{foreach key=key item=item from=$arrForm}-->
32                <!--{if $key ne 'mode'}-->
33                    <input type="hidden" name="<!--{$key}-->" value="<!--{$item.value|h}-->" />
34                <!--{/if}-->
35            <!--{/foreach}-->
36            <table summary="お問い合わせ内容確認">
37                <col width="30%" />
38                <col width="70%" />
39                <tr>
40                    <th>お名前</th>
41                    <td><!--{$arrForm.name01.value|h}--> <!--{$arrForm.name02.value|h}--></td>
42                </tr>
43                <tr>
44                    <th>お名前(フリガナ)</th>
45                    <td><!--{$arrForm.kana01.value|h}--> <!--{$arrForm.kana02.value|h}--></td>
46                </tr>
47                <tr>
48                    <th>郵便番号</th>
49                    <td>
50                        <!--{if strlen($arrForm.zip01.value) > 0 && strlen($arrForm.zip02.value) > 0}-->
51                            〒<!--{$arrForm.zip01.value|h}-->-<!--{$arrForm.zip02.value|h}-->
52                        <!--{/if}-->
53                    </td>
54                </tr>
55                <tr>
56                    <th>住所</th>
57                    <td><!--{$arrPref[$arrForm.pref.value]}--><!--{$arrForm.addr01.value|h}--><!--{$arrForm.addr02.value|h}--></td>
58                </tr>
59                <tr>
60                    <th>電話番号</th>
61                    <td>
62                        <!--{if strlen($arrForm.tel01.value) > 0 && strlen($arrForm.tel02.value) > 0 && strlen($arrForm.tel03.value) > 0}-->
63                            <!--{$arrForm.tel01.value|h}-->-<!--{$arrForm.tel02.value|h}-->-<!--{$arrForm.tel03.value|h}-->
64                        <!--{/if}-->
65                    </td>
66                </tr>
67                <tr>
68                    <th>メールアドレス</th>
69                    <td><a href="mailto:<!--{$arrForm.email.value|escape:'hex'}-->"><!--{$arrForm.email.value|escape:'hexentity'}--></a></td>
70                </tr>
71                <tr>
72                    <th>お問い合わせ内容</th>
73                    <td><!--{$arrForm.contents.value|h|nl2br}--></td>
74                </tr>
75            </table>
76            <div class="btn_area">
77                <ul>
78                    <li>
79                        <a href="?" onclick="eccube.setModeAndSubmit('return', '', ''); return false;" onmouseover="eccube.chgImg('<!--{$TPL_URLPATH}-->img/button/btn_back_on.jpg','back02');" onmouseout="eccube.chgImg('<!--{$TPL_URLPATH}-->img/button/btn_back.jpg','back02');"> <img src="<!--{$TPL_URLPATH}-->img/button/btn_back.jpg" alt="戻る" name="back02" id="back02" /></a>
80                    </li>
81                    <li>
82                        <input type="image" onmouseover="eccube.chgImgImageSubmit('<!--{$TPL_URLPATH}-->img/button/btn_complete_on.jpg',this)" onmouseout="eccube.chgImgImageSubmit('<!--{$TPL_URLPATH}-->img/button/btn_complete.jpg',this)" src="<!--{$TPL_URLPATH}-->img/button/btn_complete.jpg" alt="送信" name="send" id="send" />
83                    </li>
84                </ul>
85            </div>
86
87        </form>
88    </div>
89</div>
Note: See TracBrowser for help on using the repository browser.