<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>update</title>
|
|
<style type="text/css">
|
|
div{
|
|
width: 800px;
|
|
height: 500px;
|
|
border: outset 2px rgb(253, 253, 253);
|
|
border-radius: 1%;
|
|
margin: 20px auto;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body style="background-color:rgba(233, 233, 233, 0.767)">
|
|
<br>
|
|
<h1 align="center" style="color:rgb(110, 108, 119)">学 生 考 勤 管 理 平 台</h1>
|
|
<div style="background-color:white">
|
|
<h3 align="center">请在下方更改学生信息</h3>
|
|
<br>
|
|
<form action="./staff_update.php?id=<?=$arr['jobnum']?>" method="POST" align="center">
|
|
<p>学号:<input type="text" name="jobnum" value="<?=$arr['jobnum']?>"></p>
|
|
<p>姓名:<input type="text" name="name" value="<?=$arr['name']?>"></p>
|
|
<p>院系:<input type="text" name="dept" value="<?=$arr['dept']?>"></p>
|
|
<p>班级:<input type="text" name="depthead" value="<?=$arr['depthead']?>"></p>
|
|
<p>
|
|
<input type="submit" value="更新">
|
|
<input type="button" value="返回" onclick="window.location='./staff_list.php'">
|
|
</p>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|