-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuserInfo.html
More file actions
48 lines (45 loc) · 1005 Bytes
/
userInfo.html
File metadata and controls
48 lines (45 loc) · 1005 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="./css/normalize.css">
<link rel="stylesheet" href="./css/userInfo.css" media="screen" title="no title">
</head>
<body>
<div class="editBox">
<ul>
<li><input type="button" value="新建"></li>
<li><input type="button" value="修改"></li>
<li><input type="button" value="删除"></li>
<li><input type="button" value="查看"></li>
</ul>
</div>
<table class="tableBox">
<tr>
<th>序号</th>
<th>姓名</th>
<th>性别</th>
<th>手机号</th>
<th>状态</th>
<th>角色</th>
</tr>
<tr>
<td>2016001</td>
<td>刘明</td>
<td>男</td>
<td>1351195001</td>
<td>在线</td>
<td>管理员</td>
</tr>
<tr>
<td>2016002</td>
<td>王明</td>
<td>男</td>
<td>1351195021</td>
<td>离线</td>
<td>用户</td>
</tr>
</table>
</body>
</html>