source: branches/version-2_12-dev/data/Smarty/templates/sphone/contact/confirm.tpl @ 21537

Revision 21537, 3.7 KB checked in by Seasoft, 12 years ago (diff)

#1613 (ソース整形・ソースコメントの改善)

  • 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-2011 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<section id="undercolumn">
24    <!--☆お問い合わせ内容確認 -->
25    <h2 class="title"><!--{$tpl_title|h}--></h2>
26        <div class="intro">
27            <p>入力内容をご確認ください。</p>
28        </div>
29
30        <form name="form1" id="form1" method="post" action="?">
31            <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
32            <input type="hidden" name="mode" value="complete" />
33            <!--{foreach key=key item=item from=$arrForm}-->
34                <!--{if $key ne 'mode'}-->
35                    <input type="hidden" name="<!--{$key}-->" value="<!--{$item.value|h}-->" />
36                <!--{/if}-->
37            <!--{/foreach}-->
38
39            <dl class="form_entry">
40
41            <dt>お名前</dt>
42            <dd><!--{$arrForm.name01.value|h}-->&nbsp;<!--{$arrForm.name02.value|h}--></dd>
43
44            <dt>お名前(フリガナ)</dt>
45            <dd><!--{$arrForm.kana01.value|h}-->&nbsp;<!--{$arrForm.kana02.value|h}--></dd>
46
47            <dt>住所</dt>
48            <dd>
49                <!--{if strlen($arrForm.zip01.value) > 0 && strlen($arrForm.zip02.value) > 0}-->
50                〒<!--{$arrForm.zip01.value|h}-->-<!--{$arrForm.zip02.value|h}-->
51                <!--{/if}--><br />
52                <!--{$arrPref[$arrForm.pref.value]}--><!--{$arrForm.addr01.value|h}--><!--{$arrForm.addr02.value|h}-->
53            </dd>
54
55            <dt>電話番号</dt>
56            <dd>
57                <!--{if strlen($arrForm.tel01.value) > 0 && strlen($arrForm.tel02.value) > 0 && strlen($arrForm.tel03.value) > 0}-->
58                    <!--{$arrForm.tel01.value|h}-->-<!--{$arrForm.tel02.value|h}-->-<!--{$arrForm.tel03.value|h}-->
59                <!--{/if}-->
60            </dd>
61
62            <dt>メールアドレス</dt>
63            <dd><a href="mailto:<!--{$arrForm.email.value|escape:'hex'}-->"><!--{$arrForm.email.value|escape:'hexentity'}--></a></dd>
64
65            <dt>お問い合わせ内容<br /><span class="mini">(全角1000字以下)</span></dt>
66            <dd><!--{$arrForm.contents.value|h|nl2br}--></dd>
67        </dl>
68
69        <div class="btn_area">
70            <ul class="btn_btm">
71                <li><input type="submit" value="送信" class="btn data-role-none" name="send" id="send" /></li>
72                <li><a class="btn_back" href="?" onClick="fnModeSubmit('return', '', ''); return false;">戻る</a></li>
73            </ul>
74        </div>
75    </form>
76</section>
77
78<!--▼検索バー -->
79<section id="search_area">
80    <form method="get" action="<!--{$smarty.const.ROOT_URLPATH}-->products/list.php">
81        <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
82        <input type="hidden" name="mode" value="search" />
83        <input type="search" name="name" id="search" value="" placeholder="キーワードを入力" class="searchbox" >
84    </form>
85</section>
86<!--▲検索バー -->
Note: See TracBrowser for help on using the repository browser.