-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmentor.html
76 lines (71 loc) · 3.45 KB
/
mentor.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta charset = "utf-8">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link href = "css/mentor.css" rel = "stylesheet"></style>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<title>Mentor</title>
</head>
<body>
<nav class="navbar navbar-expand-md bg-dark navbar-dark">
<!-- Brand -->
<a class="navbar-brand" href="#">Hello Mentors</a>
<!-- Toggler/collapsibe Button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Navbar links -->
<div class="collapse navbar-collapse justify-content-end" id="collapsibleNavbar">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="/logout">Logout</a>
</li>
</ul>
</div>
</nav>
<div class = "tickets">
<table class = "ticketTable" id="open-tickets">
<caption>Open Tickets</caption>
<thead>
<tr>
<th scope="col">Ticket ID</th>
<th scope="col">Name</th>
<th scope="col">Problem Description</th>
<th scope="col">Location</th>
<th scope="col">Tags</th>
<th scope="col">Time Submitted</th>
<th scope="col">Status</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class = "tickets">
<table class = "ticketTable" id="mentor-tickets">
<caption>Your Tickets</caption>
<thead>
<tr>
<th scope="col">Ticket ID</th>
<th scope="col">Name</th>
<th scope="col">Problem Description</th>
<th scope="col">Location</th>
<th scope="col">Tags</th>
<th scope="col">Time Submitted</th>
<th scope="col">Release</th>
<th scope="col">Close</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<script src="https://code.jquery.com/jquery-3.4.0.min.js" integrity="sha256-BJeo0qm959uMBGb65z40ejJYGSgR7REI4+CW1fNKwOg=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script src = "js/mentor.js"></script>
</body>
</html>