forked from opencodeiiita/Collaborative-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathassigned-issues.html
More file actions
55 lines (51 loc) · 1.76 KB
/
assigned-issues.html
File metadata and controls
55 lines (51 loc) · 1.76 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
<!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" />
<title>Opencode | Project Info</title>
<link rel="icon" type="image/png" href="img/favicon-opencode.ico" />
<!-- Favicons -->
<link href="img/favicon.png" rel="icon" />
<link href="img/apple-touch-icon.png" rel="apple-touch-icon" />
<script
src="https://use.fontawesome.com/releases/v5.15.3/js/all.js"
crossorigin="anonymous"
></script>
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<!-- Custom CSS -->
<link rel="stylesheet" href="css/assigned-issues-style.css" />
</head>
<body>
<header>
<div class="px-4 pt-5 my-5 text-center">
<h1 class="page-heading display-4 font-weight-bold">Assigned Issues</h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4">
Below are all the issues assigned to the participants
</p>
</div>
</div>
<div class="search-bar-container container w-75 mx-auto">
<input
class="search-bar form-control form-control-lg"
type="text"
placeholder="Search For User"
aria-label=".form-control-lg example"
oninput="search()"
/>
</div>
</header>
<main class="main-container container w-75 mx-auto">
<div class="assigned-issues-container"></div>
</main>
<div class="spinner-container">
<div class="spinner-border text-info my-5" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
<script src="js/assigned-issues.js"></script>
</body>
</html>