-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.html
42 lines (33 loc) · 1.14 KB
/
search.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0">
<link type="text/css" rel="stylesheet" href="./css/trainstatus.css">
</head>
<body>
<section class="search">
<div class="page-header">
<h2>春运神器</h2>
<p>简单牛逼的火车晚点查询工具</p>
</div>
<form class="container form">
<div class="form-group">
<input class="form-control" name="station" type="text" placeholder="车站名称">
</div>
<div class="form-group">
<input class="form-control" name="train" type="text" placeholder="车次">
</div>
<input class="btn btn-lg btn-block btn-success" type="submit" value="查 询">
</form>
</section>
<footer class="container site-footer">
<h5>使用说明</h5>
<ol>
<li>本查询提供未来3小时内列车正晚点信息;</li>
<li>所有查询条件必须完全准确,以确保能够查询到所需信息;</li>
<li>本功能及查询结果仅作为参考,准确信息以车站公告为准。</li>
</ol>
</footer>
</body>
</html>