-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmodify_user.php
More file actions
203 lines (182 loc) · 8.02 KB
/
Copy pathmodify_user.php
File metadata and controls
203 lines (182 loc) · 8.02 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<?php
require_once "query.php";
require_once "modify.php";
$user_number = $_GET["user_number"];
$action = "functions/modify_user.php?staff_number=" . $user_number;
?>
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>软件工程大作业</title>
<!-- Bootstrap -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<!-- DIY CSS -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="assets/js/html5shiv.min.js"></script>
<script src="assets/js/respond.min.js"></script>
<![endif]-->
</head>
<body style="padding-top: 70px;">
<!-- Navbar start -->
<nav class="navbar navbar-default navbar-fixed-top navbar-inverse " role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#nav-title"
aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">教师工资管理系统 - 管理员
<small>demo</small>
</a>
</div>
<div class="collapse navbar-collapse" id="nav-title">
<ul class="nav navbar-nav navbar-right">
<li class="dropdown" id="nav-user">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true"
aria-expanded="false"><?php echo $staff_name; ?><span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="admin.php">回到主页</a></li>
<li role="separator" class="divider"></li>
<li><a href="logout.php">注销</a></li>
</ul>
</li>
<li><a href="#" data-toggle="modal" data-target="#about">关于</a></li>
</ul>
</div>
</div>
</nav>
<!-- Navbar end -->
<!-- Query table start -->
<div class="container" style="padding-top: 20px; ">
<!-- Tab panes -->
<div class="panel" id="wage_panel">
<div class="panel-heading text-center"><strong>用户列表</strong></div>
<div class="panel-body">
<!-- 查询语句在这 -->
<table class="table table-bordered table-hover table-striped text-center">
<tr class="success">
<td>工号</td>
<td>姓名</td>
<td>职位</td>
<td>职称</td>
<td>身份</td>
</tr>
<?php
print_user_info($con, $user_number);
?>
</table>
</div>
</div>
</div>
<hr class="divider">
<div class="container" style="padding-top: 50px;padding-bottom: 40px;">
<div class="panel">
<form action=<?php echo $action; ?> role="form" method="post">
<div class="panel-heading text-center">
<strong>修改用户</strong>
</div>
<div class="panel-body">
<div class="form-group">
<label for="staff_number"><strong>工号: <?php echo $user_number; ?></strong></label>
</div>
<div class="form-group">
<label for="staff_name">姓名</label>
<input type="text" class="form-control" id="staff_name" name="staff_name" placeholer="工号">
</div>
<div class="form-group">
<label for="staff_position">职称</label>
<select class="form-control" name="professional_title">
<option value="0" selected>无</option>
<option value="1">教授</option>
<option value="2">副教授</option>
<option value="3">讲师</option>
<option value="4">助教</option>
</select>
</div>
<div class="form-group">
<label for="professional-title">职位</label>
<select class="form-control" name="staff_position">
<option value="0" selected>无</option>
<option value="1">校长</option>
<option value="2">副校长</option>
<option value="3">处长</option>
<option value="4">副处</option>
<option value="5">科长</option>
<option value="6">副科</option>
<option value="7">主管</option>
<option value="8">职员</option>
</select>
</div>
<div class="form-group">
<label for="modify_right">权限身份</label>
<select class="form-control" name="modify_right">
<option value="0" selected>普通教师</option>
<option value="1">管理员 - 拥有修改权限</option>
</select>
</div>
<div class="form-group">
<label for="staff_password">密码(6-20位)</label>
<input type="password" class="form-control" id="staff_password" name="staff_password"
placeholer="工号">
</div>
<div class="form-group">
<label for="reenter_password">确认密码</label>
<input type="password" class="form-control" id="reenter_password" name="reenter_password"
placeholer="工号">
</div>
</div>
<div class="panel-footer" stylr="float:right;">
<button class="btn btn-success" type="submit">完成</button>
<button class="btn btn-warning" type="reset">清除</button>
</div>
</form>
</div>
</div>
<!-- Footer start -->
<div class="navbar navbar-default navbar-fixed-bottom">
<div class="container">
<footer class="text-center" style="padding-top: 15px;">
<p style="margin-bottom: -1px;"><strong>海南大学信息科学技术学院 - 软件工程大作业</strong></p>
<p>by 何俊霖 马海英 刘润一 蒋雨汐
<small>版权所有,仅供内部交流</small>
</p>
</footer>
</div>
</div>
<!-- Footer end -->
<!-- 弹出框 -->
<div class="modal fade" id="about" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
aria-hidden="true">×</span></button>
<h4 class="modal-title">关于</h4>
</div>
<div class="modal-body">
<p>一个基本的工资管理系统的实现,基于 Apache - PHP - MySQL 开发。</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-dismiss="modal">了解了</button>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="assets/js/jquery-3.2.1.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="assets/js/bootstrap.min.js"></script>
</body>
</html>