-
Notifications
You must be signed in to change notification settings - Fork 432
/
Copy pathcheck_flow.html
62 lines (50 loc) · 1.82 KB
/
check_flow.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="initial-scale=1.0, width=device-width" name="viewport">
<title>使用流量查询</title>
<!-- css -->
<link href="css/base.min.css" rel="stylesheet">
<!-- favicon -->
<!-- ... -->
<!-- ie -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js" type="text/javascript"></script>
<script src="js/respond.js" type="text/javascript"></script>
<![endif]-->
</head>
<body>
<div class="content">
<div class="content-heading">
<div class="container">
<h1 class="heading">使用流量查询</h1>
</div>
</div>
<div class="content-inner">
<div class="container">
<div class="row">
<div class="form-group form-group-green">
<form action="/cgi-bin/check_flow.py">
<div class="col-lg-2 col-md-3 col-sm-4">
<label class="form-label" for="input-inline">请输入端口:</label>
</div>
<div class="col-lg-4 col-md-6 col-sm-8">
<input class="form-control form-control-inline" id="input-inline" type="text" name="port"></br>
</br><button class="btn btn-green" type="submit">提交</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="container">
<p>Function Club</p>
</div>
</footer>
<script src="js/base.min.js" type="text/javascript"></script>
</body>
</html>