source: branches/version-2_12-multilang/data/Smarty/templates/sphone_en-US/entry/confirm.tpl @ 22734

Revision 22734, 4.7 KB checked in by kim, 11 years ago (diff)

#2190 2.12.3en_p1での修正をマージ

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>Confirm information</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>Name</dt>
41            <dd><!--{$arrForm.name01|h}-->&nbsp;<!--{$arrForm.name02|h}--></dd>
42
43            <dt>Address</dt>
44            <dd>
45                <!--{* <!--{$arrForm.zip01|h}--> - <!--{$arrForm.zip02|h}--><br /> *}-->
46                <!--{$arrForm.zipcode|h}--><br />
47                <!--{$arrForm.addr01|h}--><!--{$arrForm.addr02|h}-->
48            </dd>
49
50            <dt>Phone number</dt>
51            <dd><!--{$arrForm.tel01|h}--> - <!--{$arrForm.tel02|h}--> - <!--{$arrForm.tel03|h}--></dd>
52
53            <dt>FAX</dt>
54            <dd>
55                <!--{if strlen($arrForm.fax01) > 0 && strlen($arrForm.fax02) > 0 && strlen($arrForm.fax03) > 0}-->
56                    <!--{$arrForm.fax01|h}--> - <!--{$arrForm.fax02|h}--> - <!--{$arrForm.fax03|h}-->
57                <!--{else}-->
58                    Not registered
59                <!--{/if}-->
60            </dd>
61
62            <dt>E-mail address</dt>
63            <dd><a href="mailto:<!--{$arrForm.email|escape:'hex'}-->" rel="external"><!--{$arrForm.email|escape:'hexentity'}--></a></dd>
64
65            <dt>Gender</dt>
66            <dd>
67                <!--{if $arrForm.sex eq 1}-->
68                    Male
69                <!--{else}-->
70                    Female
71                <!--{/if}-->
72            </dd>
73
74            <dt>Occupation</dt>
75            <dd><!--{$arrJob[$arrForm.job]|default:"Not registered"|h}--></dd>
76
77            <dt>Date of birth</dt>
78            <dd>
79                <!--{if strlen($arrForm.year) > 0 && strlen($arrForm.month) > 0 && strlen($arrForm.day) > 0}-->
80                    <!--{$arrForm.year|h}--> / <!--{$arrForm.month|h}--> / <!--{$arrForm.day|h}-->
81                <!--{else}-->
82                    Not registered
83                <!--{/if}-->
84            </dd>
85
86            <dt>Desired password</dt>
87            <dd><!--{$passlen}--></dd>
88
89            <dt>Hint for when you have forgotten your password</dt>
90            <dd>
91                Question:<!--{$arrReminder[$arrForm.reminder]|h}--><br />
92                Answer:<!--{$arrForm.reminder_answer|h}-->
93            </dd>
94
95            <dt>About delivery of the mail magazine</dt>
96            <dd>
97                <!--{if $arrForm.mailmaga_flg eq 1}-->
98                    Receive HTML mail + text mail
99                <!--{elseif $arrForm.mailmaga_flg eq 2}-->
100                    Receive a text mail
101                <!--{else}-->
102                    Do not send an email
103                <!--{/if}-->
104            </dd>
105        </dl>
106
107        <!--★ボタン★-->
108        <div class="btn_area">
109            <ul class="btn_btm">
110                <li><input type="submit" value="Register" class="btn data-role-none" name="send" id="send" /></li>
111                <li><a href="#" onclick="fnModeSubmit('return', '', ''); return false;" class="btn_back">Go back</a></li>
112            </ul>
113        </div>
114    </form>
115</section>
116
117<!--▼検索バー -->
118<section id="search_area">
119    <form method="get" action="<!--{$smarty.const.ROOT_URLPATH}-->products/list.php">
120        <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
121        <input type="hidden" name="mode" value="search" />
122        <input type="search" name="name" id="search" value="" placeholder="Enter keywords" class="searchbox" >
123    </form>
124</section>
125<!--▲検索バー -->
Note: See TracBrowser for help on using the repository browser.