-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (100 loc) · 3.69 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
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
115
116
117
118
119
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>请愿开学时间报名</title>
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="https://cdn.static.runoob.com/libs/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://cdn.static.runoob.com/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdn.static.runoob.com/libs/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript" src="./enroll/moment.min.js"></script>
<script type="text/javascript" src="./enroll/bootstrap-datetimepicker.min.js"></script>
<script type="text/javascript" src="./enroll/bootstrap-datetimepicker.zh-CN.js"></script>
<link rel="stylesheet" href="./enroll/bootstrap-datetimepicker.min.css" />
</head>
<body>
<img src="./enroll/header.gif" class="img-responsive" alt="headerr">
<div class="well">
<div class="container">
<h3>请愿开学时间报名</h3>
</div>
</div>
<div id="Layer1" style="position:fixed; width:100%; height:100%; z-index:-1">
<img src="./enroll/backgound.jpg" height="100%" width="100%" />
</div>
<div class="container container-fluid">
<div class="row clearfix">
<div class="col-md-12 column">
<form role="form" action="https://www.bilibili.com/video/BV1W4421w7kd/?share_source=copy_web&vd_source=78c40a494199bd421e3b56a59ef0944f" method="">
<div class="col-md-6 column">
<div class="form-group">
<label for="name">姓名:</label>
<input class="form-control" name="data[name]" id="fine_name" type="name" />
</div>
</div>
<div class="col-md-8 column">
<div class="col-md-4 column">
<div class="form-group">
<label for="name">是否自愿开学:</label>
<div class="radio">
<label>
<input type="radio" name="data[sex]" id="sex" value="0" checked>是
</label>
<label>
<input type="radio" name="data[sex]" id="sex" value="1">否
</label>
</div>
</div>
</div>
<div class="col-md-8 column">
<div class="form-group">
<label>自愿开学时间:</label>
<div class='input-group date' id='datetimepicker1'>
<input type='text' name="data[birthday]" class="form-control" placeholder="非必填" />
<span class="input-group-addon">
<span class="glyphicon glyphicon-calendar"></span>
</span>
</div>
</div>
</div>
<div class="form-group">
<label for="telnumber">联系电话:</label>
<input class="form-control" name="data[telnumber]" id="telnumber" placeholder="可不填" />
</div>
</div>
<div class="col-md-6 column">
<div class="form-group">
<label for="grade">就读年级:</label>
<select id="fc_grade" class="form-control" name="data[grade]">
<option value="1" selected="selected">高一 </option>
<option value="2">高二 </option>
<option value="3">高三 </option>
<option value="4">大学生 </option>
</select>
</div>
<div class="form-group">
<label for="teacher">班主任:</label>
<input class="form-control" name="data[teacher]" id="teacher" type="text"
placeholder="可不填" />
</div>
</div>
<div class="col-md-4 column"> </div>
<div class="col-md-4 column">
<input class="btn btn-primary btn-lg btn-block" value="提 交" name="submit" type="submit">
</div>
<div class="col-md-4 column"></div>
</form>
</div>
</div>
</div>
<hr />
</body>
<script type="text/javascript">
$(function () {
$('#datetimepicker1').datetimepicker({
format: 'YYYY-MM-DD',
locale: moment.locale('zh-cn')
});
});
</script>
</html>