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

Revision 23103, 4.7 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<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.value|h}-->" />
36        <!--{/foreach}-->
37
38        <dl class="form_entry">
39
40            <dt>お名前</dt>
41            <dd><!--{$arrForm.name01.value|h}-->&nbsp;<!--{$arrForm.name02.value|h}--></dd>
42
43            <dt>お名前(フリガナ)</dt>
44            <dd><!--{$arrForm.kana01.value|h}-->&nbsp;<!--{$arrForm.kana02.value|h}--></dd>
45
46            <dt>住所</dt>
47            <dd>
48                〒<!--{$arrForm.zip01.value|h}--> - <!--{$arrForm.zip02.value|h}--><br />
49                <!--{$arrPref[$arrForm.pref.value]|h}--><!--{$arrForm.addr01.value|h}--><!--{$arrForm.addr02.value|h}-->
50            </dd>
51
52            <dt>電話番号</dt>
53            <dd><!--{$arrForm.tel01.value|h}--> - <!--{$arrForm.tel02.value|h}--> - <!--{$arrForm.tel03.value|h}--></dd>
54
55            <dt>FAX</dt>
56            <dd>
57                <!--{if strlen($arrForm.fax01.value) > 0 && strlen($arrForm.fax02.value) > 0 && strlen($arrForm.fax03.value) > 0}-->
58                    <!--{$arrForm.fax01.value|h}--> - <!--{$arrForm.fax02.value|h}--> - <!--{$arrForm.fax03.value|h}-->
59                <!--{else}-->
60                    未登録
61                <!--{/if}-->
62            </dd>
63
64            <dt>メールアドレス</dt>
65            <dd><a href="mailto:<!--{$arrForm.email.value|escape:'hex'}-->" rel="external"><!--{$arrForm.email.value|escape:'hexentity'}--></a></dd>
66
67            <dt>性別</dt>
68            <dd>
69                <!--{if $arrForm.sex.value eq 1}-->
70                    男性
71                <!--{else}-->
72                    女性
73                <!--{/if}-->
74            </dd>
75
76            <dt>職業</dt>
77            <dd><!--{$arrJob[$arrForm.job.value]|default:"未登録"|h}--></dd>
78
79            <dt>生年月日</dt>
80            <dd>
81                <!--{if strlen($arrForm.year.value) > 0 && strlen($arrForm.month.value) > 0 && strlen($arrForm.day.value) > 0}-->
82                    <!--{$arrForm.year.value|h}-->年<!--{$arrForm.month.value|h}-->月<!--{$arrForm.day.value|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.value]|h}--><br />
94                答え:<!--{$arrForm.reminder_answer.value|h}-->
95            </dd>
96
97            <dt>メールマガジン送付について</dt>
98            <dd>
99                <!--{if $arrForm.mailmaga_flg.value eq 1}-->
100                    HTMLメール+テキストメールを受け取る
101                <!--{elseif $arrForm.mailmaga_flg.value eq 2}-->
102                    テキストメールを受け取る
103                <!--{else}-->
104                    受け取らない
105                <!--{/if}-->
106            </dd>
107        </dl>
108
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="eccube.setModeAndSubmit('return', '', ''); return false;" class="btn_back">戻る</a></li>
114            </ul>
115        </div>
116    </form>
117</section>
118
119<!--{include file= 'frontparts/search_area.tpl'}-->
120
Note: See TracBrowser for help on using the repository browser.