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

Revision 22222, 5.2 KB checked in by m_uehara, 11 years ago (diff)

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

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<div id="undercolumn">
24    <div id="undercolumn_entry">
25        <h2 class="title"><!--{$tpl_title|h}--></h2>
26        <p>Do you want to send the contents below?<br />
27           Click the "Register as a member" button at the bottom.</p>
28        <form name="form1" id="form1" method="post" action="?">
29        <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
30        <input type="hidden" name="mode" value="complete">
31        <!--{foreach from=$arrForm key=key item=item}-->
32            <input type="hidden" name="<!--{$key|h}-->" value="<!--{$item|h}-->" />
33        <!--{/foreach}-->
34
35        <table summary="Confirmation of input content">
36            <col width="30%" />
37            <col width="70%" />
38            <tr>
39                <th>Name</th>
40                <td>
41                    <!--{$arrForm.name01|h}-->&nbsp;
42                    <!--{$arrForm.name02|h}-->
43                </td>
44            </tr>
45            <tr>
46                <th>Postal code</th>
47                <td>
48                    <!--{* <!--{$arrForm.zip01|h}--> - <!--{$arrForm.zip02|h}--> *}-->
49                    <!--{$arrForm.zipcode|h}-->
50                </td>
51            </tr>
52            <tr>
53                <th>Address</th>
54                <td>
55                    <!--{$arrForm.addr01|h}--><!--{$arrForm.addr02|h}-->
56                </td>
57            </tr>
58            <tr>
59                <th>Telephone number</th>
60                <td>
61                    <!--{$arrForm.tel01|h}--> - <!--{$arrForm.tel02|h}--> - <!--{$arrForm.tel03|h}-->
62                </td>
63            </tr>
64            <tr>
65                <th>FAX</th>
66                <td>
67                    <!--{if strlen($arrForm.fax01) > 0 && strlen($arrForm.fax02) > 0 && strlen($arrForm.fax03) > 0}-->
68                        <!--{$arrForm.fax01|h}--> - <!--{$arrForm.fax02|h}--> - <!--{$arrForm.fax03|h}-->
69                    <!--{else}-->
70                        Not registered
71                    <!--{/if}-->
72                </td>
73            </tr>
74            <tr>
75                <th>E-mail address</th>
76                <td>
77                    <a href="mailto:<!--{$arrForm.email|escape:'hex'}-->"><!--{$arrForm.email|escape:'hexentity'}--></a>
78                </td>
79            </tr>
80            <tr>
81                <th>Gender</th>
82                <td>
83                    <!--{if $arrForm.sex eq 1}-->
84                    Male
85                    <!--{else}-->
86                    Female
87                    <!--{/if}-->
88                </td>
89            </tr>
90            <tr>
91                <th>Occupation</th>
92                <td><!--{$arrJob[$arrForm.job]|default:"Not registered"|h}--></td>
93            </tr>
94            <tr>
95                <th>Date of birth</th>
96                <td>
97                    <!--{if strlen($arrForm.year) > 0 && strlen($arrForm.month) > 0 && strlen($arrForm.day) > 0}-->
98                        <!--{$arrForm.year|h}-->年<!--{$arrForm.month|h}-->月<!--{$arrForm.day|h}-->日
99                    <!--{else}-->
100                    Not registered
101                    <!--{/if}-->
102                </td>
103            </tr>
104            <tr>
105                <th>Desired password<br />
106                </th>
107                <td><!--{$passlen}--></td>
108            </tr>
109            <tr>
110                <th>Hint for when you have forgotten your password</th>
111                <td>
112                    Question:<!--{$arrReminder[$arrForm.reminder]|h}--><br />
113                    Answer:<!--{$arrForm.reminder_answer|h}-->
114                </td>
115            </tr>
116            <tr>
117                <th>About delivery of the mail magazine</th>
118                <td>
119                    <!--{if $arrForm.mailmaga_flg eq 1}-->
120                    Receive HTML mail + text mail
121                    <!--{elseif $arrForm.mailmaga_flg eq 2}-->
122                    Receive a text mail
123                    <!--{else}-->
124                    Not accepted
125                    <!--{/if}-->
126                </td>
127            </tr>
128        </table>
129
130        <div class="btn_area">
131            <ul>
132                <li>
133                    <a class="bt04" href="?" onclick="fnModeSubmit('return', '', ''); return false;">Go back</a>
134                </li>
135                <li>
136                    <button class="bt02 bt_wide">Register as a member</button>
137                </li>
138            </ul>
139        </div>
140
141        </form>
142    </div>
143</div>
Note: See TracBrowser for help on using the repository browser.