-
Notifications
You must be signed in to change notification settings - Fork 0
/
organizer.html
133 lines (127 loc) · 6.45 KB
/
organizer.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
<!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/organizer.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>Organizer</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 = "/add-hacker">Add a Hacker</a>
</li>
<li class = "nav-item">
<a class = "nav-link" href = "/add-mentor">Add a Mentor</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/logout">Logout</a>
</li>
</ul>
</div>
</nav>
<div class = "container-fluid">
<form id = "sign-in-mentor-form">
<fieldset>
<legend>Sign in Mentor</legend>
<div class = "controls">
<div class = "row">
<div class = "col">
<div class = "form-group">
<label for = "email">Email</label>
<input id = "email" name="email" type = "text" class = "form-control" required = "required" data-error="Please enter your email">
</div>
</div>
</div>
<div class = "row">
<div class = "col-md-12">
<input type = "submit" value="Submit" class = "btn btn-submit">
</div>
</div>
</div>
</fieldset>
</form>
</div>
<div class = "container-fluid">
<form id = "sign-out-mentor-form">
<fieldset>
<legend>Sign Out Mentor</legend>
<div class = "controls">
<div class = "row">
<div class = "col">
<div class = "form-group">
<label for = "email">Email</label>
<input id = "email" name="email" type = "text" class = "form-control" required = "required" data-error="Please enter your email">
</div>
</div>
</div>
<div class = "row">
<div class = "col-md-12">
<input type = "submit" value = "Submit" class = "btn btn-submit">
</div>
</div>
</div>
</fieldset>
</form>
</div>
<div class="container-fluid">
<div class= "row">
<div class = "container-fluid">
<div class = "table-responsive">
<table id="current-mentors">
<caption>Current Mentors</caption>
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">Email</th>
<th scope="col">Skills</th>
<th scope="col">Status</th>
<th scope="col">Start Time</th>
<th scope="col">Elapsed Time</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<div class = "container-fluid">
<div class = "table-responsive">
<table id="all-tickets">
<caption>All 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>
</div>
</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/organizer.js"></script>
</body>
</html>