-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (60 loc) · 1.87 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link href="css/bootstrap.min.css" rel="stylesheet">
<script type="text/javascript" src="js/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="js/jquery.xdomainajax.js"></script>
<link href="css/style.css" rel="stylesheet">
<script type="text/javascript" src="js/common.js"></script>
<title>官公需API検索ページ</title>
</head>
<body>
<div class="search_area">
<div class="container">
<div class="header">検索条件</div>
<form>
<fieldSet class="form-group">
<div class="form-group">
<legend>件名</legend>
<input type="text" class="form-control" id="search_title_text">
</div>
<div class="form-group">
<legend>内容</legend>
<input type="text" class="form-control" id="search_query_text">
</div>
<button type="submit" class="btn btn-success float-right" id="search_btn">検索</button>
</fieldSet>
</form>
</div>
</div>
<div class="result_area">
<div class="container">
<div class="row col-xs-12">
<table class="result_table table table-bordered table-hover">
<tr id="result_header">
<th>Id</th>
<th>URL</th>
<th>件名</th>
<th>都道府県名</th>
<th>市区町村名</th>
<th>入札資格</th>
<th>公告日</th>
<th>納入期限日</th>
</tr>
<tr id="result_datarow">
<td class="col_type_no" id="col_id">1</td>
<td class="col_type_text_m" id="col_URL">1</td>
<td class="col_type_text_l" id="col_title">1</td>
<td class="col_type_text_m" id="col_prefecture_name">1</td>
<td class="col_type_text_m" id="col_city_name">1</td>
<td class="col_type_text_m" id="col_certification">1</td>
<td class="col_type_date" id="col_cft_issue_date">1</td>
<td class="col_type_date" id="col_period_end_time">1</td>
</tr>
</table>
</div>
</div>
</div>
</body>
</html>