<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>add</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_add.php" method="POST" align="center">
|
|
<p>学号:<input type="text" name="jobnum" value=""></p>
|
|
<p>姓名:<input type="text" name="name" value=""></p>
|
|
<p>院系:<input type="text" name="dept" value=""></p>
|
|
<p>班级:<input type="text" name="depthead" value=""></p>
|
|
<p>
|
|
<input type="submit" value="提交">
|
|
<input type="reset" value="重置">
|
|
<input type="button" value="返回" onclick="window.location='./staff_list.php'">
|
|
</p>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|