source: branches/version-2_13-dev/data/Smarty/templates/sphone/entry/confirm.tpl @ 23002

Revision 23002, 4.5 KB checked in by Yammy, 11 years ago (diff)

スマートフォンテンプレート下部にある検索エリアを
共通テンプレート化して、includeするように修正

refs #2257

  • 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
RevLine 
[19713]1<!--{*
2 * This file is part of EC-CUBE
3 *
[22206]4 * Copyright(c) 2000-2013 LOCKON CO.,LTD. All Rights Reserved.
[19713]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 *}-->
[21537]22
[21050]23<section id="undercolumn">
[21533]24    <h2 class="title"><!--{$tpl_title|h}--></h2>
[19713]25
[21533]26    <!--★インフォメーション★-->
27    <div class="information end">
28        <p>入力内容をご確認ください。</p>
29    </div>
[21050]30
[21533]31    <form name="form1" id="form1" method="post" action="?">
32        <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
33        <input type="hidden" name="mode" value="complete">
34        <!--{foreach from=$arrForm key=key item=item}-->
35            <input type="hidden" name="<!--{$key|h}-->" value="<!--{$item|h}-->" />
36        <!--{/foreach}-->
[21050]37
[21533]38        <dl class="form_entry">
[21050]39
[21533]40            <dt>お名前</dt>
41            <dd><!--{$arrForm.name01|h}-->&nbsp;<!--{$arrForm.name02|h}--></dd>
[21050]42
[21533]43            <dt>お名前(フリガナ)</dt>
44            <dd><!--{$arrForm.kana01|h}-->&nbsp;<!--{$arrForm.kana02|h}--></dd>
[19713]45
[21533]46            <dt>住所</dt>
47            <dd>
48                〒<!--{$arrForm.zip01|h}--> - <!--{$arrForm.zip02|h}--><br />
49                <!--{$arrPref[$arrForm.pref]|h}--><!--{$arrForm.addr01|h}--><!--{$arrForm.addr02|h}-->
50            </dd>
[21050]51
[21533]52            <dt>電話番号</dt>
53            <dd><!--{$arrForm.tel01|h}--> - <!--{$arrForm.tel02|h}--> - <!--{$arrForm.tel03|h}--></dd>
[21050]54
[21533]55            <dt>FAX</dt>
56            <dd>
57                <!--{if strlen($arrForm.fax01) > 0 && strlen($arrForm.fax02) > 0 && strlen($arrForm.fax03) > 0}-->
58                    <!--{$arrForm.fax01|h}--> - <!--{$arrForm.fax02|h}--> - <!--{$arrForm.fax03|h}-->
59                <!--{else}-->
60                    未登録
61                <!--{/if}-->
62            </dd>
63
64            <dt>メールアドレス</dt>
65            <dd><a href="mailto:<!--{$arrForm.email|escape:'hex'}-->" rel="external"><!--{$arrForm.email|escape:'hexentity'}--></a></dd>
66
67            <dt>性別</dt>
68            <dd>
69                <!--{if $arrForm.sex eq 1}-->
70                    男性
71                <!--{else}-->
72                    女性
73                <!--{/if}-->
74            </dd>
75
76            <dt>職業</dt>
77            <dd><!--{$arrJob[$arrForm.job]|default:"未登録"|h}--></dd>
78
79            <dt>生年月日</dt>
80            <dd>
81                <!--{if strlen($arrForm.year) > 0 && strlen($arrForm.month) > 0 && strlen($arrForm.day) > 0}-->
82                    <!--{$arrForm.year|h}-->年<!--{$arrForm.month|h}-->月<!--{$arrForm.day|h}-->日
83                <!--{else}-->
84                    未登録
85                <!--{/if}-->
86            </dd>
87
88            <dt>希望するパスワード</dt>
89            <dd><!--{$passlen}--></dd>
90
91            <dt>パスワードを忘れた時のヒント</dt>
92            <dd>
93                質問:<!--{$arrReminder[$arrForm.reminder]|h}--><br />
94                答え:<!--{$arrForm.reminder_answer|h}-->
95            </dd>
96
97            <dt>メールマガジン送付について</dt>
98            <dd>
99                <!--{if $arrForm.mailmaga_flg eq 1}-->
100                    HTMLメール+テキストメールを受け取る
101                <!--{elseif $arrForm.mailmaga_flg eq 2}-->
102                    テキストメールを受け取る
103                <!--{else}-->
104                    受け取らない
105                <!--{/if}-->
106            </dd>
[21050]107        </dl>
108
[21533]109        <!--★ボタン★-->
110        <div class="btn_area">
111            <ul class="btn_btm">
112                <li><input type="submit" value="完了ページへ" class="btn data-role-none" name="send" id="send" /></li>
113                <li><a href="#" onclick="fnModeSubmit('return', '', ''); return false;" class="btn_back">戻る</a></li>
114            </ul>
115        </div>
116    </form>
[21050]117</section>
[21533]118
[23002]119<!--{include file= 'frontparts/search_area.tpl'}-->
120
Note: See TracBrowser for help on using the repository browser.