source: branches/version-2_13-dev/data/Smarty/templates/default/frontparts/bloc/login.tpl @ 23061

Revision 23061, 4.4 KB checked in by pineray, 11 years ago (diff)

#2342 JavaScript?のグローバルな宣言を減らす
ウィンドウ関連.

  • 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 * This file is part of EC-CUBE
3 *
4 * Copyright(c) 2000-2013 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<!--{strip}-->
24    <div class="block_outer">
25        <div id="login_area">
26            <h2><img src="<!--{$TPL_URLPATH}-->img/title/tit_bloc_login.gif" alt="ログイン" /></h2>
27            <form name="login_form" id="login_form" method="post" action="<!--{$smarty.const.HTTPS_URL}-->frontparts/login_check.php" onsubmit="return fnCheckLogin('login_form')">
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                <div class="block_body">
32                    <!--{if $tpl_login}-->
33                        <p>ようこそ<br />
34                            <span class="user_name"><!--{$tpl_name1|h}--> <!--{$tpl_name2|h}--> 様</span><br />
35                            <!--{if $smarty.const.USE_POINT !== false}-->
36                                所持ポイント:<span class="point"> <!--{$tpl_user_point|number_format|default:0}--> pt</span>
37                            <!--{/if}-->
38                        </p>
39                        <!--{if !$tpl_disable_logout}-->
40                            <p class="btn">
41                                <input type="image" onmouseover="chgImgImageSubmit('<!--{$TPL_URLPATH}-->img/button/btn_bloc_logout_on.jpg',this)" onmouseout="chgImgImageSubmit('<!--{$TPL_URLPATH}-->img/button/btn_bloc_logout.jpg',this)" src="<!--{$TPL_URLPATH}-->img/button/btn_bloc_logout.jpg" onclick="fnFormModeSubmit('login_form', 'logout', '', ''); return false;" alt="ログアウト" />
42                            </p>
43                        <!--{/if}-->
44                    <!--{else}-->
45                        <dl class="formlist">
46                            <dt>メールアドレス</dt>
47                            <dd>
48                                <input type="text" name="login_email" class="box140" value="<!--{$tpl_login_email|h}-->" style="ime-mode: disabled;" />
49                            </dd>
50                            <dd class="mini">
51                                <input type="checkbox" name="login_memory" id="login_memory" value="1" <!--{$tpl_login_memory|sfGetChecked:1}--> />
52                                <label for="login_memory"><span>コンピューターに記憶する</span></label>
53                            </dd>
54                        </dl>
55                        <dl class="formlist">
56                            <dt class="password">パスワード</dt>
57                            <dd><input type="password" name="login_pass" class="box140" /></dd>
58                            <dd class="mini">
59                            <a href="<!--{$smarty.const.HTTPS_URL}-->forgot/<!--{$smarty.const.DIR_INDEX_PATH}-->" onclick="eccube.common.win01('<!--{$smarty.const.HTTPS_URL}-->forgot/<!--{$smarty.const.DIR_INDEX_PATH}-->','forget','600','400'); return false;" target="_blank">パスワードを忘れた方はこちら</a>
60                            </dd>
61                        </dl>
62                        <p class="btn">
63                            <input type="image" onmouseover="chgImgImageSubmit('<!--{$TPL_URLPATH}-->img/button/btn_bloc_login_on.jpg',this)" onmouseout="chgImgImageSubmit('<!--{$TPL_URLPATH}-->img/button/btn_bloc_login.jpg',this)" src="<!--{$TPL_URLPATH}-->img/button/btn_bloc_login.jpg" alt="ログイン" />
64                        </p>
65                    <!--{/if}-->
66                </div>
67            </form>
68        </div>
69    </div>
70<!--{/strip}-->
Note: See TracBrowser for help on using the repository browser.