-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (39 loc) · 1.7 KB
/
index.html
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
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>吴院学分自查</title>
<link href="static/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container" style="margin-top: 00px">
<h1 class="text-center">吴玉章学院学生学分自查</h1>
<div class="jumbotron text-left">
<p>1. 本程序会登录教务处下载所有已经修读课程的信息</p>
<p>2. 输入账号密码,点击提交,稍等数秒, 之后会自动下载一个Excel文件</p>
<p>3. 在此承诺: 本网站不会以任何形式保存密码</p>
<p>4. 网站全站https, 请放心使用 </p>
</div>
<form method="post">
<div class="form-group">
<label for="inputStuid"> 学号</label>
<input type="text" class="form-control" id="inputStuid" name="stuid" placeholder="学号" autofocus>
</div>
<div class="form-group">
<label for="inputPasswd">密码</label>
<input id="inputPasswd" type="password" class="form-control" name="passwd" placeholder="密码">
</div>
<button type="submit" class="btn btn-primary btn-lg center-block">提交</button>
</form>
<br>
<footer class="text-center">powered by Les1ie</footer>
<br>
<footer class="text-center">项目<a href="https://github.com/scuwyz/self_check_point">源代码</a></footer>
</div>
<script src="static/js/jquery.min.js"></script>
<script src="static/js/bootstrap.min.js"></script>
</body>
</html>