-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (96 loc) · 4.82 KB
/
Copy pathindex.html
File metadata and controls
106 lines (96 loc) · 4.82 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NSCLab Web Based Dataset</title>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<link rel="icon" type="image/png" href="images/DataSetWindowsIcon.png">
<link rel="stylesheet" href="./styles/styles.css">
</head>
<body>
<!-- side menu section -->
<section id="side_menu" data-aos="fade-right" data-aos-duration="700">
<div class="bug_logo">
<img src="images/Bug Hosting.png" alt="bug logo">
<div id="header_text">
<h2>NSC Dataset</h2>
<p>Ver 2.0.1</p>
</div>
</div>
<!-- naviation links -->
<div class="navigation">
<ul>
<div class="current"><li><div class="nav_hover"><a href="index.html"><img src="./images/home.png" alt="">Home</a></div></li></div>
<li><div class="nav_hover"><a href="about.html"><img src="./images/about.png" alt="">About</a></div></li>
<li><div class="nav_hover"><a href="search.php"><img src="./images/search.png" alt="">Search</a></div></li>
<li><div class="nav_hover"><a href="http://nsclab.org/nsclab/" target="_blank"><img src="./images/domain.png" alt="">NSCLab</a></div></li>
</ul>
</div>
</section> <!-- end of side menu section -->
<!-- heading section -->
<section id="interface">
<div class="search_heading" data-aos="fade-down" data-aos-easing="ease-in-out" data-aos-duration="700" data-aos-delay="400">
<div class="left">
<h1>DATABASE</h1>
</div>
<div class="right_logo">
<img src="images/logo.jpg" alt="">
</div>
</div>
<!-- search bar -->
<div class="search_sort" data-aos="fade-in" data-aos-easing="ease-in-out" data-aos-duration="700" data-aos-delay="400">
<div class="left">
<div class="left_search">
<img src="images/search.png" alt="">
<input type="text" placeholder="Search bugs..." size="60" id="myInput" onkeyup="search()">
</div>
</div>
<!-- drop down box -->
<div class="right_sort" data-aos="fade-in" data-aos-easing="ease-in-out" data-aos-duration="700" data-aos-delay="400">
<div include="form-input-select()" class="select_box">
<select required><option value="" hidden>Sort by... </option>
<option value="1">Newest</option>
<option value="2">Oldest</option>
<option value="3">Type</option>
<option value="4">Regression</option>
</select>
</div>
</div>
</div>
<!-- table with dummy data -->
<div class="container" data-aos="fade-in" data-aos-easing="ease-in-out" data-aos-duration="700" data-aos-delay="400">
<table class="table" id="our-table">
<thead>
<tr>
<th>Bug Name</th>
<th>Bug Type</th>
<th>Bug Input</th>
<th>Bug Commit</th>
<th>Regression</th>
<th>Status</th>
<th>Report Date</th>
<th>Fix Date</th>
</tr>
</thead>
<tbody id="table-body"> <!-- table data will be generated within this <tbody> tag -->
</tbody>
<script src="script.js"></script>
</table>
</div>
<!-- this div let's us browse 1000+ records in pages instead of scrolling for eternity -->
<div class="container">
<div id="count">Showing '16' of 1000</div>
<div id="pagination-wrapper"></div>
</div>
<script src="./scripts/tablesearch.js"></script>
</section> <!-- end of heading section-->
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>
AOS.init();
</script>
<script src="./scripts/index.js"></script>
</body>
</html>