6f5278ae8acd41957ff6a7cdf580694ab76459f9.svn-base
2.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>main</title>
<link type="text/css" rel="stylesheet"
href="<%=request.getContextPath()%>/css/admin/style.css" />
</head>
<body>
<div class="center-main-ss" style="margin-bottom: 5px;">
<div class="main-title">
<span style="float: left;"><img
src="<%=request.getContextPath()%>/images/admin/t_mt01.jpg" /> </span>
<span class="main-tt">添加管理员</span>
<span style="float: right;"><img
src="<%=request.getContextPath()%>/images/admin/t_mt03.jpg" /> </span>
</div>
<div class="main-add">
<form action="<%=request.getContextPath()%>/saveAccount.html" id="validateForm">
<table width="80%" align="center" border="0" cellpadding="0"
cellspacing="1" bgcolor="#CCCCCC" class="productTable">
<tr>
<td align="right" nowrap="nowrap" class="productTable_title">
编码:
</td>
<td bgcolor="#ffffff">
<input type="text" name="code" class="required"></input>
</td>
</tr>
<tr>
<td align="right" nowrap="nowrap" class="productTable_title">
账户名:
</td>
<td bgcolor="#ffffff">
<input type="text" name="loginName" class="required"></input>
</td>
</tr>
<tr>
<td align="right" nowrap="nowrap" class="productTable_title">
登录密码:
</td>
<td bgcolor="#ffffff">
<input type="password" name="loginPass" class="required"></input>
</td>
</tr>
<tr>
<td align="right" nowrap="nowrap" class="productTable_title">
状态:
</td>
<td bgcolor="#ffffff">
<select name="status" class="required select">
<option value="0">无效</option>
<option value="1">有效</option>
<option value="-1">冻结</option>
</select>
</td>
</tr>
<tr>
<td align="right" nowrap="nowrap" class="productTable_title">
备注:
</td>
<td bgcolor="#ffffff">
<textarea rows="3" cols="5" name="remarks"></textarea>
</td>
</tr>
<tr>
<td colspan="2" align="center" height="40" bgcolor="#ffffff">
<input type="submit" value="保 存" class="admin_again"></input>
<input type="button" value="返 回" class="admin_again" onClick="javascript:history.go(-1);">
</td>
</tr>
</table>
</form>
</div>
</div>
</body>
</html>