-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubmit.html
138 lines (137 loc) · 4.08 KB
/
submit.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
*{
margin:0;
padding:0;
}
.xitong{
/* width: 200px; */
margin-top:10px;
margin-left:10px;
margin-bottom:8px;
height: 50px;
background-image: url(img/logo.png);
background-repeat:no-repeat;
background-size:contain;
}
.exit{
border: 1px solid rgb(15,89,164);
font-size: 20px;
/* width: 150px; */
height: 50px;
text-align: center;
line-height: 50px;
border-radius: 20px;
color: rgb(15,89,164);
background-color: #F59A43;
transition: 2s;
padding: 1px 50px;
float:right;
margin-right:20px;
}
.exit:hover{
color: white;
background-color: rgb(15,89,164);
box-shadow: 2px 2px 10px #f96520,
-2px 2px 10px #D1F276,
2px -2px 10px #D1F276,
-2px -2px 10px #D1F276;
}
.left{
width: 200px;
height: 700px;
border: 1px solid rgb(15,89,164);
float: left;
background-color: rgb(15,89,164);
}
.right{
width:1150px;
height:500px;
margin-left:60px;
margin-top:50px;
/* border: 1px solid red; */
float: left;
}
.title{
list-style-type: none;
width: 200px;
height: 55px;
line-height: 55px;
border: 1px dashed black;
text-align: center;
}
a{
color: black;
text-decoration: none;
font-family: "微软雅黑";
font-weight: bold;
font-size: 20px;
}
.first{
margin-top:50px;
}
.first>li{
background-color: ghostwhite;
}
.first>li:hover{
background-color: skyblue;
}
.first>li a:hover{
color: white;
}
p{
font-size:18px;
margin-top:14px;
}
.next{
border: 1px solid rgb(15,89,164);
font-size: 20px;
height: 50px;
text-align: center;
line-height: 50px;
color: rgb(15,89,164);
background-color: #F59A43;
transition: 2s;
padding: 1px 50px;
margin-right:100px;
}
</style>
</head>
<body>
<div class="xitong">
<span style="margin-left: 50px;font-size: 34px;font-family: '华文新魏';font-weight: bold;height: 50px;line-height: 50px;color:rgb(15,89,164);">保研岸 | </span>
<span style="font-size: 29px;font-family: '幼圆';font-weight: bold;height: 50px;line-height: 50px;">模拟夏令营预申请与资格审查系统</span>
<a href="log.html" class="exit" style="text-decoration:none;">退 出</a>
<a href="xialingyingshouye.html" class="exit" style="text-decoration:none;">夏令营首页</a>
</div>
<hr style="background-color:rgb(15,89,164);height:5px;border:none;">
<div class="left">
<ul class="first">
<li class="title"><a href="sqxz.html">申请须知</a></li>
<li class="title"><a href="personalinf.html">个人信息</a></li>
<li class="title"><a href="educationback.html">教育背景</a></li>
<li class="title"><a href="personalstate.html">个人陈述</a></li>
<li class="title"><a href="dataupload.html">资料上传</a></li>
<li class="title"><a href="recommend.html">推荐信</a></li>
<li class="title"><a href="promise.html">诚信承诺</a></li>
<li class="title" style="background-color:lightblue;"><a href="submit.html">提交申请</a></li>
</ul>
</div>
<div class="right">
(*本系统为夏令营模拟系统,部分涉及个人隐私的信息可模糊填写)<br><br>
<p>提交注意事项:</p>
<p>1、未提交完整资格审查所需信息不予受理;</p>
<p>2、若报名材料作假、信息错误、存在重大漏洞,或报名者有违规舞弊行为将承担不被录取或被取消学籍等后果;</p>
<p>3、提交完成后,无法再次修改信息;</p>
<p>4、必须激活注册邮箱后才能提交,以确保及时接收通知;</p>
<p style="color:purple;">5、请留意注册邮箱及本系统的信息提示。</p>
<p style="color:red;font-weight:bold;">注:本系统仅为模拟系统,不涉及邮箱操作。</p>
<a href="promise.html" class="next" style="text-decoration:none;">上一步</a>
<a href="state.html" class="next" style="text-decoration:none;">填写完成,提交报名表</a>
</div>
</body>
</html>