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

Revision 18734, 4.0 KB checked in by nanasess, 14 years ago (diff)

Copyright の更新(#601)

  • Property svn:eol-style set to LF
  • Property svn:mime-type set to text/html; charset=UTF-8
Line 
1<!--{*
2 * This file is part of EC-CUBE
3 *
4 * Copyright(c) 2000-2010 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  <div id="undercolumn_contact">
25    <h2 class="title">
26      <img src="<!--{$TPL_DIR}-->img/contact/title.jpg" width="580" height="40" alt="お問い合わせ" />
27    </h2>
28    <p>下記入力内容で送信してもよろしいでしょうか?<br />
29      よろしければ、一番下の「送信」ボタンをクリックしてください。</p>
30    <form name="form1" id="form1" method="post" action="<!--{$smarty.server.PHP_SELF|escape}-->">
31      <input type="hidden" name="mode" value="complete" />
32      <!--{foreach key=key item=item from=$arrForm}-->
33        <!--{if $key ne 'mode'}-->
34      <input type="hidden" name="<!--{$key}-->" value="<!--{$item|escape}-->" />
35        <!--{/if}-->
36      <!--{/foreach}-->
37      <table summary="お問い合わせ内容確認">
38        <tr>
39          <th>お名前<span class="attention">※</span></th>
40          <td><!--{$arrForm.name01|escape}--> <!--{$arrForm.name02|escape}--></td>
41        </tr>
42        <tr>
43          <th>お名前(フリガナ)<span class="attention">※</span></th>
44          <td><!--{$arrForm.kana01|escape}--> <!--{$arrForm.kana02|escape}--></td>
45        </tr>
46        <tr>
47          <th>郵便番号</th>
48          <td>
49             <!--{if strlen($arrForm.zip01) > 0 && strlen($arrForm.zip02) > 0}-->
50               〒<!--{$arrForm.zip01|escape}-->-<!--{$arrForm.zip02|escape}-->
51             <!--{/if}-->
52          </td>
53        </tr>
54        <tr>
55          <th>住所</th>
56          <td><!--{$arrPref[$arrForm.pref]}--><!--{$arrForm.addr01|escape}--><!--{$arrForm.addr02|escape}--></td>
57        </tr>
58        <tr>
59          <th>電話番号</th>
60          <td>
61            <!--{if strlen($arrForm.tel01) > 0 && strlen($arrForm.tel02) > 0 && strlen($arrForm.tel03) > 0}-->
62              <!--{$arrForm.tel01|escape}-->-<!--{$arrForm.tel02|escape}-->-<!--{$arrForm.tel03|escape}-->
63            <!--{/if}-->
64          </td>
65        </tr>
66        <tr>
67          <th>メールアドレス<span class="attention">※</span></th>
68          <td><a href="mailto:<!--{$arrForm.email|escape:'hex'}-->"><!--{$arrForm.email|escape:'hexentity'}--></a></td>
69        </tr>
70        <tr>
71          <th>お問い合わせ内容<span class="attention">※</span><br />
72             <span class="mini">(全角1000字以下)</span></th>
73          <td><!--{$arrForm.contents|escape|nl2br}--></td>
74        </tr>
75      </table>
76      <div class="tblareabtn">
77      <a href="<!--{$smarty.server.PHP_SELF|escape}-->"
78         onclick="fnModeSubmit('return', '', ''); return false;"
79         onmouseover="chgImg('<!--{$TPL_DIR}-->img/common/b_back_on.gif','back02');"
80         onmouseout="chgImg('<!--{$TPL_DIR}-->img/common/b_back.gif','back02');">
81        <img src="<!--{$TPL_DIR}-->img/common/b_back.gif" width="150" height="30"
82             alt="戻る" name="back02" id="back02" /></a>
83      <input type="image"
84             onmouseover="chgImgImageSubmit('<!--{$TPL_DIR}-->img/common/b_send_on.gif',this)"
85             onmouseout="chgImgImageSubmit('<!--{$TPL_DIR}-->img/common/b_send.gif',this)"
86             src="<!--{$TPL_DIR}-->img/common/b_send.gif" alt="送信" name="send" id="send" class="box150" />
87       </div>
88     </form>
89   </div>
90</div>
91<!--▲CONTENTS-->
Note: See TracBrowser for help on using the repository browser.