source: branches/comu-ver2/data/Smarty/templates/default/admin/system/input.tpl @ 18700

Revision 18700, 3.7 KB checked in by nanasess, 14 years ago (diff)

Copyright の更新(#601)

  • Property svn:eol-style set to LF
  • 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-2010 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<!--{include file="`$smarty.const.TEMPLATE_ADMIN_DIR`admin_popup_header.tpl"}-->
25
26<script type="text/javascript">
27<!--
28self.moveTo(20,20);self.focus();
29//-->
30</script>
31
32<form name="form1" id="form1" method="post" action="" onsubmit="return fnRegistMember();">
33<input type="hidden" name="mode" value="<!--{$tpl_mode|escape}-->">
34<input type="hidden" name="member_id" value="<!--{$tpl_member_id|escape}-->">
35<input type="hidden" name="pageno" value="<!--{$tpl_pageno|escape}-->">
36<input type="hidden" name="old_login_id" value="<!--{$tpl_old_login_id|escape}-->">
37<input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid|escape}-->">
38<h2>メンバー登録/編集</h2>
39
40<table>
41  <tr>
42    <th>名前</th>
43    <td>
44      <!--{if $arrErr.name}--><span class="attention"><!--{$arrErr.name}--></span><!--{/if}-->
45      <input type="text" name="name" size="30" class="box30" value="<!--{$arrForm.name}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" />
46      <span class="attention">※必須入力</span>
47    </td>
48  </tr>
49  <tr>
50    <th>所属</th>
51    <td>
52      <!--{if $arrErr.department}--><span class="attention"><!--{$arrErr.department}--></span><!--{/if}-->
53      <input type="text" name="department" size="30" class="box30" value="<!--{$arrForm.department}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" />
54    </td>
55  </tr>
56  <tr>
57    <th>ログインID</th>
58    <td>
59      <!--{if $arrErr.login_id}--><span class="attention"><!--{$arrErr.login_id}--></span><!--{/if}-->
60      <input type="text" name="login_id" size="20" class="box20"  value="<!--{$arrForm.login_id}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->"/>
61      <span class="attention">※必須入力</span><br />
62      ※半角英数字<!--{$smarty.const.ID_MIN_LEN}-->~<!--{$smarty.const.ID_MAX_LEN}-->文字
63    </td>
64  </tr>
65  <tr>
66    <th>パスワード</th>
67    <td>
68      <!--{if $arrErr.password}--><span class="attention"><!--{$arrErr.password}--></span><!--{/if}-->
69      <input type="password" name="password" size="20" class="box20" value="<!--{$arrForm.password}-->" onfocus="<!--{$tpl_onfocus}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->"/>
70      <span class="attention">※必須入力</span><br />
71      ※半角英数字<!--{$smarty.const.ID_MIN_LEN}-->~<!--{$smarty.const.ID_MAX_LEN}-->文字
72  </td>
73  </tr>
74  <tr>
75    <th>権限</th>
76    <td>
77      <!--{if $arrErr.authority}--><span class="attention"><!--{$arrErr.authority}--></span><!--{/if}-->
78      <select name="authority">
79        <option value="">選択してください</option>
80        <!--{html_options options=$arrAUTHORITY selected=$arrForm.authority}-->
81      </select>
82      <span class="attention">※必須入力</span>
83    </td>
84  </tr>
85</table>
86
87<div class="btn"><button type="submit"><span>この内容で登録する</span></button></div>
88</form>
89
90<!--{include file="`$smarty.const.TEMPLATE_ADMIN_DIR`admin_popup_footer.tpl"}-->
Note: See TracBrowser for help on using the repository browser.