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

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

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

Line 
1<!--{*
2/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2012 LOCKON CO.,LTD. All Rights Reserved.
6 *
7 * http://www.lockon.co.jp/
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22 */
23*}-->
24
25<div id="mypagecolumn">
26    <h2 class="title"><!--{$tpl_title|h}--></h2>
27    <!--{include file=$tpl_navi}-->
28    <div id="mycontents_area">
29        <h3><!--{$tpl_subtitle|h}--></h3>
30        <p>Do you want to send the contents below?<br />
31           Click the "To completion page" button at the bottom</p>
32
33        <form name="form1" id="form1" method="post" action="?">
34        <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
35        <input type="hidden" name="mode" value="complete" />
36        <input type="hidden" name="customer_id" value="<!--{$arrForm.customer_id|h}-->" />
37        <!--{foreach from=$arrForm key=key item=item}-->
38            <!--{if $key ne "mode" && $key ne "subm"}-->
39            <input type="hidden" name="<!--{$key|h}-->" value="<!--{$item|h}-->" />
40            <!--{/if}-->
41        <!--{/foreach}-->
42        <table summary=" " class="delivname">
43            <col width="30%" />
44            <col width="70%" />
45            <tr>
46                <th>Name</th>
47                <td><!--{$arrForm.name01|h}--> <!--{$arrForm.name02|h}--></td>
48            </tr>
49            <tr>
50                <th>Postal code</th>
51                <!--{* <td><!--{$arrForm.zip01}-->-<!--{$arrForm.zip02}--></td> *}-->
52                <td><!--{$arrForm.zipcode}--></td>
53            </tr>
54            <tr>
55                <th>Address</th>
56                <td><!--{$arrPref[$arrForm.pref]}--><!--{$arrForm.addr01|h}--><!--{$arrForm.addr02|h}--></td>
57            </tr>
58            <tr>
59                <th>Telephone number</th>
60                <td><!--{$arrForm.tel01|h}-->-<!--{$arrForm.tel02}-->-<!--{$arrForm.tel03}--></td>
61            </tr>
62            <tr>
63                <th>FAX</th>
64                <td><!--{if strlen($arrForm.fax01) > 0}--><!--{$arrForm.fax01}-->-<!--{$arrForm.fax02}-->-<!--{$arrForm.fax03}--><!--{else}-->Not registered<!--{/if}--></td>
65            </tr>
66            <tr>
67                <th>E-mail address</th>
68                <td><a href="<!--{$arrForm.email|escape:'hex'}-->"><!--{$arrForm.email|escape:'hexentity'}--></a></td>
69            </tr>
70            <tr>
71                <th>Mobile e-mail address</th>
72                <td>
73                    <!--{if strlen($arrForm.email_mobile) > 0}-->
74                    <a href="<!--{$arrForm.email_mobile|escape:'hex'}-->"><!--{$arrForm.email_mobile|escape:'hexentity'}--></a>
75                    <!--{else}-->
76                    Not registered
77                    <!--{/if}-->
78                </td>
79            </tr>
80            <tr>
81                <th>Gender</th>
82                <td><!--{$arrSex[$arrForm.sex]}--></td>
83            </tr>
84            <tr>
85                <th>Occupation</th>
86                <td><!--{$arrJob[$arrForm.job]|default:"Not registered"|h}--></td>
87            </tr>
88            <tr>
89                <th>Date of birth</th>
90                <td><!--{if strlen($arrForm.year) > 0 && strlen($arrForm.month) > 0 && strlen($arrForm.day) > 0}--><!--{$arrForm.year|h}-->年<!--{$arrForm.month|h}-->月<!--{$arrForm.day|h}-->日<!--{else}-->Not registered<!--{/if}--></td>
91            </tr>
92            <tr>
93                <th>Desired password<br />
94                </th>
95                <td><!--{$passlen}--></td>
96            </tr>
97            <tr>
98                <th>Hint for when you have forgotten your password</th>
99                <td>Question:&nbsp;<!--{$arrReminder[$arrForm.reminder]|h}--><br />
100                      Answer:&nbsp;<!--{$arrForm.reminder_answer|h}--></td>
101            </tr>
102            <tr>
103                <th>About delivery of the mail magazine</th>
104                <td><!--{$arrMAILMAGATYPE[$arrForm.mailmaga_flg]}--></td>
105            </tr>
106        </table>
107
108        <div class="btn_area">
109            <ul>
110                <li>
111                    <a class="bt04" href="?" onclick="fnModeSubmit('return', '', ''); return false;">Go back</a>
112                </li>
113                <li><button class="bt02">Send</button></li>
114            </ul>
115        </div>
116        </form>
117    </div>
118</div>
Note: See TracBrowser for help on using the repository browser.