user1.html
1.91 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="http://static.yohobuy.com/admin/css/style.css" rel="stylesheet" type="text/css" media="all" />
<title>YOHO有货后台管理</title>
<script type="text/javascript" src="http://static.yohobuy.com/admin/js/jquery.min.js"></script>
</head>
<body>
<div class="mainbox">
<div class="daohang">当前位置:<a href="main.html">首页</a> > <a href="#">权限管理</a> > <span>修改密码</span></div>
<table class="table1" style="width:100%">
<thead>
<tr>
<th colspan="2">用户档案</th>
</tr>
</thead>
<tbody>
<tr>
<td>用户名称</td>
<td><input name="uname" type="text" id="uname" style="width:200px;" value="刘子阳" /></td>
</tr>
<tr>
<td>用户密码</td>
<td><input name="upwd" type="password" id="upwd" style="width:200px;" /><span class="font_tip">(密码必须由数字和字母组成,不能小于6位!)</span></td>
</tr>
<tr>
<td>真实姓名</td>
<td><input name="utname" type="text" id="utname" disabled="disabled" style="width:200px;" value="刘子阳" /></td>
</tr>
<tr>
<td></td>
<td><button onclick="if(checkpwd()) __doPostBack('btn_setup3','')" id="btn_setup3" type="button" class="butok"></button></td>
</tr>
</tbody>
</table>
</div>
</body>
</html>