-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>报名查询</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1 class="logo" ><img src="img/logo.png" alt=""></h1>
</header>
<section class="content">
<h1 class="title">报名查询</h1>
<form action="#" method="post">
<p>
<input placeholder="电话" type="text" name="phone" id="phone" class="input-text" maxlength="11">
<span id="phone_error" class="error-msg"></span>
</p>
<p><button id="search" class="submit-btn" type="submit">查询</button></p>
</form>
<p class="tip"><a href="#">没查到报名?点击这里前往报名→</a></p>
</section>
<footer>
<p>Copyright © 2018 <br/> All Rights Reserved Powered By ISA.</p>
</footer>
<script src="js/do.js"></script>
</body>
</html>