source: branches/version-2_12-multilang/data/Smarty/templates/sphone/entry/confirm.tpl @ 22205

Revision 22205, 5.0 KB checked in by m_uehara, 11 years ago (diff)

#2004 郵便番号を2カラムから1カラムに変更しました。

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