-
Notifications
You must be signed in to change notification settings - Fork 1
/
dashboard.html
139 lines (118 loc) · 5.31 KB
/
dashboard.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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<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">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<title>Submit an Issue</title>
</head>
<body>
<div class="container">
<nav class="navbar navbar-expand-lg bg-light">
<div class="container">
<a class="navbar-brand" href="#">Thapar Industry</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Check History</a>
</li>
<!-- temp start -->
<li class="nav-item">
<a href="../Industry/sub_issue_indust.html" class="nav-link">Industry Login</a>
</li>
<!-- temp end -->
<li class="nav-item dropdown">
<a class="nav-link" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
<img class="img-fluid" src="logo.png" alt="avatar" width="30" height="30">
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Dashboard</a></li>
<li><a class="dropdown-item" href="#">Change Password</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="#">Logout</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<div class="container mt-4">
<h2>Welcome Expert</h2>
<span></span>
</div>
<!-- SIDE BAR -->
<!-- TOGGLE SWITCH -->
<!-- ISSUE LIST -->
<div class="container mt-4" >
<!-- SORTING -->
<div class="container col-sm d-flex align-content-center justify-content-around" >
<select class="form-select form-select-sm mb-3" name="" id="" style="width:20%;">
<option selected hidden value="">Sort By</option>
<option value="">Date Uploaded</option>
<option value="">Industry Name</option>
<option value="">Submitter Name</option>
</select>
</div>
<!-- TABLE -->
<div class="container d-flex align-items-center justify-content-center">
<table class="table table-bordered" style="max-width: 50%;" >
<tr>
<th style="width: 1%;">S.No</th>
<th style="width: 16%">Date Uploaded</th>
<th style="width: 30%;">Issue Heading</th>
<th style="width: 30%;">Industry Name</th>
<th style="width: 20%;">Submitter Name</th>
<th style="width: 5%;">Mark</th>
</tr>
<!-- loop starts, max 20 per page-->
<tr>
<td>1.</td>
<td>21-06-2022</td>
<td>Air Pollution</td>
<td>Harries Pvt. Ltd</td>
<td>Harry</td>
<td><input type="checkbox" name="mark" id=""></td>
</tr>
<!-- loop ends -->
</table>
</div>
</div>
<div class="container d-flex align-content-end justify-content-end">
<input type="submit" name="mark_sub" id="" value="Mark" class="btn btn-primary">
</div>
<!-- PAGINATION -->
<nav aria-label="Page navigation example">
<ul class="pagination justify-content-center">
<li class="page-item disabled">
<a class="page-link" href="#" tabindex="-1">Previous</a>
</li>
<li class="page-item"><a class="page-link" href="#">1</a></li>
<li class="page-item"><a class="page-link" href="#">2</a></li>
<li class="page-item"><a class="page-link" href="#">3</a></li>
<li class="page-item">
<a class="page-link" href="#">Next</a>
</li>
</ul>
</nav>
</div>
<footer>
<div class="container-fluid" >
<footer class="mt-5">
<ul class="nav justify-content-center border-bottom pb-3 mb-3">
<li class="nav-item"><a href="#" class="nav-link px-2 text-muted">Link1</a></li>
<li class="nav-item"><a href="#" class="nav-link px-2 text-muted">Link2</a></li>
<li class="nav-item"><a href="#" class="nav-link px-2 text-muted">Link3</a></li>
<li class="nav-item"><a href="#" class="nav-link px-2 text-muted">Link4</a></li>
<li class="nav-item"><a href="#" class="nav-link px-2 text-muted">Link5</a></li>
</ul>
<p class="text-center text-muted">© 2022 Thapar Institute of Engineering and Technology</p>
</footer>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" ></script>
</body>
</html>