-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.php
More file actions
87 lines (80 loc) · 3.85 KB
/
input.php
File metadata and controls
87 lines (80 loc) · 3.85 KB
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./bower_components/bootstrap/dist/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="./Public/stylesheets/style.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<title>无协招新报名录入页</title>
</head>
<body>
<div class="container">
<div class="content">
<nav>
<a href="input.php">录入</a>
<a href="preview.php">预览</a>
</nav>
<header>
<h2>无协报名情况录入页</h2>
</header>
<div class="form">
<form method="post" action="./vendor/handle.php">
<div class="form-group">
<label for="team_name">队名</label>
<input type="text" class="form-control" id="team_name">
</div>
<div class="form-group">
<label for="member_name">队员名</label>
<input type="text" class="form-control" id="member_name">
</div>
<div class="form-group">
<label for="college">学院名</label>
<input type="text" class="form-control" id="college">
</div>
<div class="form-group">
<label for="professional">专业</label>
<input type="text" class="form-control" id="professional">
</div>
<div class="form-group">
<label for="team_name">队名</label>
<input type="text" class="form-control" id="exampleInputEmail1">
</div>
<div class="form-group">
<label for="class">班级</label>
<input type="text" class="form-control" id="class">
</div>
<div class="form-group">
<label for="dormitory">宿舍</label>
<input type="text" class="form-control" id="dormitory">
</div>
<div class="form-group">
<label for="dormitory">宿舍</label>
<input type="text" class="form-control" id="dormitory">
</div>
<div class="form-group">
<label for="phone">长号/短号</label>
<input type="text" class="form-control" id="phone">
</div>
<div class="checkbox">
<label>
<input type="checkbox"> 是否队长
</label>
</div>
<button type="submit" class="btn btn-default">提交</button>
</form>
</div>
</div>
</div>
<link rel="stylesheet" href="./bower_components/bootstrap/dist/js/bootstrap.min.js">
<script src="./bower_components/jquery/dist/jquery.min.js"></script>
<script src="./Public/js/input.js"></script>
</body>
</html>