source: branches/version-2_12-dev/data/Smarty/templates/default/mypage/login.tpl @ 21537

Revision 21537, 5.4 KB checked in by Seasoft, 12 years ago (diff)

#1613 (ソース整形・ソースコメントの改善)

  • 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/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2011 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<div id="undercolumn">
25    <h2 class="title"><!--{$tpl_title|h}--></h2>
26    <div id="undercolumn_login">
27        <form name="login_mypage" id="login_mypage" method="post" action="<!--{$smarty.const.HTTPS_URL}-->frontparts/login_check.php" onsubmit="return fnCheckLogin('login_mypage')">
28        <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
29        <input type="hidden" name="mode" value="login" />
30        <input type="hidden" name="url" value="<!--{$smarty.server.REQUEST_URI|h}-->" />
31
32        <div class="login_area">
33            <h3>会員登録がお済みのお客様</h3>
34            <p class="inputtext">会員の方は、登録時に入力されたメールアドレスとパスワードでログインしてください。</p>
35            <div class="inputbox">
36                <dl class="formlist clearfix">
37                    <!--{assign var=key value="login_email"}-->
38                    <span class="attention"><!--{$arrErr[$key]}--></span>
39                    <dt>メールアドレス&nbsp;:</dt>
40                    <dd>
41                        <input type="text" name="<!--{$key}-->" value="<!--{$tpl_login_email|h}-->" maxlength="<!--{$arrForm[$key].length}-->" style="<!--{$arrErr[$key]|sfGetErrorColor}-->; ime-mode: disabled;" class="box300" />
42                        <p class="login_memory">
43                            <!--{assign var=key value="login_memory"}-->
44                            <input type="checkbox" name="<!--{$key}-->" value="1"<!--{$tpl_login_memory|sfGetChecked:1}--> id="login_memory" />
45                            <label for="login_memory">メールアドレスをコンピューターに記憶させる</label>
46                        </p>
47                    </dd>
48                </dl>
49                <dl class="formlist clearfix">
50                    <dt>
51                        <!--{assign var=key value="login_pass"}-->
52                        <span class="attention"><!--{$arrErr[$key]}--></span>
53                        パスワード&nbsp;:
54                    </dt>
55                    <dd>
56                        <input type="password" name="<!--{$key}-->" maxlength="<!--{$arrForm[$key].length}-->" style="<!--{$arrErr[$key]|sfGetErrorColor}-->" class="box300" />
57                    </dd>
58                </dl>
59                <div class="btn_area">
60                    <ul>
61                        <li>
62                            <input type="image" onmouseover="chgImgImageSubmit('<!--{$TPL_URLPATH}-->img/button/btn_login_on.jpg',this)" onmouseout="chgImgImageSubmit('<!--{$TPL_URLPATH}-->img/button/btn_login.jpg',this)" src="<!--{$TPL_URLPATH}-->img/button/btn_login.jpg" alt="ログイン" name="log" id="log" />
63                        </li>
64                    </ul>
65                </div>
66            </div>
67            <p>
68                ※パスワードを忘れた方は<a href="<!--{$smarty.const.HTTPS_URL|sfTrimURL}-->/forgot/<!--{$smarty.const.DIR_INDEX_PATH}-->" onclick="win01('<!--{$smarty.const.HTTPS_URL|sfTrimURL}-->/forgot/<!--{$smarty.const.DIR_INDEX_PATH}-->','forget','600','460'); return false;" target="_blank">こちら</a>からパスワードの再発行を行ってください。<br />
69                ※メールアドレスを忘れた方は、お手数ですが、<a href="<!--{$smarty.const.ROOT_URLPATH}-->contact/<!--{$smarty.const.DIR_INDEX_PATH}-->">お問い合わせページ</a>からお問い合わせください。
70            </p>
71        </div>
72
73        <div class="login_area">
74            <h3>まだ会員登録されていないお客様</h3>
75            <p class="inputtext">会員登録をすると便利なMyページをご利用いただけます。<br />
76                また、ログインするだけで、毎回お名前や住所などを入力することなくスムーズにお買い物をお楽しみいただけます。
77            </p>
78            <div class="inputbox">
79                <div class="btn_area">
80                    <ul>
81                        <li>
82                            <a href="<!--{$smarty.const.ROOT_URLPATH}-->entry/kiyaku.php" onmouseover="chgImg('<!--{$TPL_URLPATH}-->img/button/btn_entry_on.jpg','b_gotoentry');" onmouseout="chgImg('<!--{$TPL_URLPATH}-->img/button/btn_entry.jpg','b_gotoentry');">
83                            <img src="<!--{$TPL_URLPATH}-->img/button/btn_entry.jpg" alt="会員登録をする" border="0" name="b_gotoentry" /></a>
84                        </li>
85                    </ul>
86                </div>
87            </div>
88            </form>
89        </div>
90    </div>
91</div>
Note: See TracBrowser for help on using the repository browser.