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

Revision 21867, 4.9 KB checked in by nakanishi, 12 years ago (diff)

#1831 Copyright Update

  • 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                <!--{$arrPref[$arrForm.pref]|h}--><!--{$arrForm.addr01|h}--><!--{$arrForm.addr02|h}-->
50            </dd>
51
52            <dt>電話番号</dt>
53            <dd><!--{$arrForm.tel01|h}--> - <!--{$arrForm.tel02|h}--> - <!--{$arrForm.tel03|h}--></dd>
54
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>
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="fnModeSubmit('return', '', ''); return false;" class="btn_back">戻る</a></li>
114            </ul>
115        </div>
116    </form>
117</section>
118
119<!--▼検索バー -->
120<section id="search_area">
121    <form method="get" action="<!--{$smarty.const.ROOT_URLPATH}-->products/list.php">
122        <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
123        <input type="hidden" name="mode" value="search" />
124        <input type="search" name="name" id="search" value="" placeholder="キーワードを入力" class="searchbox" >
125    </form>
126</section>
127<!--▲検索バー -->
Note: See TracBrowser for help on using the repository browser.