-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path新增学生.html
114 lines (107 loc) · 5.23 KB
/
新增学生.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
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
<!DOCTYPE html>
<!-- saved from url=(0042)https://v3.bootcss.com/examples/dashboard/ -->
<html lang="zh-CN"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- 上述3个meta标签*必须*放在最前面,任何其他内容都*必须*跟随其后! -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="https://v3.bootcss.com/favicon.ico">
<title>虚拟现实教学辅助云平台</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/dashboard.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-inverse navbar-static-top">
<div class="container-fluid">
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="教师资源.html">教师资源</a></li>
<li><a href="学生资源.html">学生资源</a></li>
<li><a href="课程管理.html">课程管理</a></li>
<li><a href="教师管理.html">教师管理</a></li>
<li class="active"><a href="学生管理.html">学生管理</a></li>
<li><a href="学生端%20-%20资源库.html">资源库</a></li>
<li><a href="作业管理.html">作业管理</a></li>
<li><a href="#">发布作业</a></li>
</ul>
<ul class="nav navbar-nav navbar-right" style="padding: 5px 20px;">
<li><img src="./img/person.jpg" class="img-circle" height="60px"></li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid container-content">
<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-heading">
<h4>新增学生</h4>
</div>
<div class="panel-body">
<form class="form-horizontal">
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">学号</label>
<div class="col-sm-8">
<input type="text" class="form-control" id="inputEmail3" placeholder="工号">
</div>
</div>
<div class="form-group">
<label for="inputPassword1" class="col-sm-2 control-label">姓名</label>
<div class="col-sm-8">
<input type="text" class="form-control" id="inputPassword1" placeholder="姓名">
</div>
</div>
<div class="form-group">
<label for="inputPassword2" class="col-sm-2 control-label">学院</label>
<div class="col-sm-8">
<input type="text" class="form-control" id="inputPassword2" placeholder="学院">
</div>
</div>
<div class="form-group">
<label for="inputPassword4" class="col-sm-2 control-label">专业</label>
<div class="col-sm-8">
<input type="text" class="form-control" id="inputPassword4" placeholder="专业">
</div>
</div>
<div class="form-group">
<label for="inputPassword5" class="col-sm-2 control-label">班级</label>
<div class="col-sm-8">
<input type="text" class="form-control" id="inputPassword5" placeholder="班级">
</div>
</div>
<div class="form-group">
<label for="inputPassword3" class="col-sm-2 control-label">课程</label>
<div class="col-sm-8" id="inputPassword3">
<select class="form-control">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-default">新增</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="./Dashboard Template for Bootstrap_files/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script>
<script src="./Dashboard Template for Bootstrap_files/bootstrap.min.js"></script>
<!-- Just to make our placeholder images work. Don't actually copy the next line! -->
<script src="./Dashboard Template for Bootstrap_files/holder.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="./Dashboard Template for Bootstrap_files/ie10-viewport-bug-workaround.js"></script>
</body></html>