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

Revision 22177, 5.2 KB checked in by h_yoshimoto, 11 years ago (diff)

#1997 カナのテキストフィールドを削除

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                </td>
50            </tr>
51            <tr>
52                <th>Address</th>
53                <td>
54                    <!--{$arrPref[$arrForm.pref]|h}--><!--{$arrForm.addr01|h}--><!--{$arrForm.addr02|h}-->
55                </td>
56            </tr>
57            <tr>
58                <th>Telephone number</th>
59                <td>
60                    <!--{$arrForm.tel01|h}--> - <!--{$arrForm.tel02|h}--> - <!--{$arrForm.tel03|h}-->
61                </td>
62            </tr>
63            <tr>
64                <th>FAX</th>
65                <td>
66                    <!--{if strlen($arrForm.fax01) > 0 && strlen($arrForm.fax02) > 0 && strlen($arrForm.fax03) > 0}-->
67                        <!--{$arrForm.fax01|h}--> - <!--{$arrForm.fax02|h}--> - <!--{$arrForm.fax03|h}-->
68                    <!--{else}-->
69                        Not registered
70                    <!--{/if}-->
71                </td>
72            </tr>
73            <tr>
74                <th>E-mail address</th>
75                <td>
76                    <a href="mailto:<!--{$arrForm.email|escape:'hex'}-->"><!--{$arrForm.email|escape:'hexentity'}--></a>
77                </td>
78            </tr>
79            <tr>
80                <th>Gender</th>
81                <td>
82                    <!--{if $arrForm.sex eq 1}-->
83                    Male
84                    <!--{else}-->
85                    Female
86                    <!--{/if}-->
87                </td>
88            </tr>
89            <tr>
90                <th>Occupation</th>
91                <td><!--{$arrJob[$arrForm.job]|default:"Not registered"|h}--></td>
92            </tr>
93            <tr>
94                <th>Date of birth</th>
95                <td>
96                    <!--{if strlen($arrForm.year) > 0 && strlen($arrForm.month) > 0 && strlen($arrForm.day) > 0}-->
97                        <!--{$arrForm.year|h}-->年<!--{$arrForm.month|h}-->月<!--{$arrForm.day|h}-->日
98                    <!--{else}-->
99                    Not registered
100                    <!--{/if}-->
101                </td>
102            </tr>
103            <tr>
104                <th>Desired password<br />
105                </th>
106                <td><!--{$passlen}--></td>
107            </tr>
108            <tr>
109                <th>Hint for when you have forgotten your password</th>
110                <td>
111                    Question:<!--{$arrReminder[$arrForm.reminder]|h}--><br />
112                    Answer:<!--{$arrForm.reminder_answer|h}-->
113                </td>
114            </tr>
115            <tr>
116                <th>About delivery of the mail magazine</th>
117                <td>
118                    <!--{if $arrForm.mailmaga_flg eq 1}-->
119                    Receive HTML mail + text mail
120                    <!--{elseif $arrForm.mailmaga_flg eq 2}-->
121                    Receive a text mail
122                    <!--{else}-->
123                    Not accepted
124                    <!--{/if}-->
125                </td>
126            </tr>
127        </table>
128
129        <div class="btn_area">
130            <ul>
131                <li>
132                    <a class="bt04" href="?" onclick="fnModeSubmit('return', '', ''); return false;">Go back</a>
133                </li>
134                <li>
135                    <button class="bt02 bt_wide">Register as a member</button>
136                </li>
137            </ul>
138        </div>
139
140        </form>
141    </div>
142</div>
Note: See TracBrowser for help on using the repository browser.