-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
32 lines (31 loc) · 1.09 KB
/
form.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
<!DOCTYPE html>
<html>
<head>
<title>6PM</title>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<style type="text/css">
body{padding-top:100px;}
</style>
</head>
<body>
<div class="row">
<div class="col-sm-9 col-md-offset-1" >
<form class="form-horizontal" action="/reslove" method="post" role="form" >
<div class="form-group">
<label for="url" style="float:left;">URL</label>
<div class="col-sm-10">
<input class="form-control" id="url" type="text" name="url" placeholder="输入6pm的url"/>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-success" style="width:350px;font-size:16px;">查询</button>
</div>
</div>
</form>
</div>
</div>
</body>
</html>