You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="zh-CN">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<title>上传Excel文件</title>
|
|
|
|
|
<style>
|
|
|
|
|
.loadbox {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 28%;
|
|
|
|
|
left: 30%;
|
|
|
|
|
width: 400px;
|
|
|
|
|
height: 250px;
|
|
|
|
|
z-index: 101;
|
|
|
|
|
background-color: ghostwhite;
|
|
|
|
|
border: 2px solid rgb(0, 0, 0);
|
|
|
|
|
padding: 20px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div class="loadbox">
|
|
|
|
|
<form action="/upload_file/" method="post" enctype="multipart/form-data">
|
|
|
|
|
<label for="file">选择文件:</label>
|
|
|
|
|
<input type="file" id="file" name="file">
|
|
|
|
|
<button type="submit">上传</button>
|
|
|
|
|
</form>
|
|
|
|
|
<p>提示:请上传Excel文件(学号,姓名,班级,专业)(学号必须为数字,班级和专业可以为空)</p>
|
|
|
|
|
<img src="../static/excel上传格式.png" width="400">
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|