-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (57 loc) · 1.5 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="wrapper">
<nav>
<div class="logo-search-wrapper">
<img class="logo" src="logo.png" alt="logo" />
<h1 class="app-title">Impersonate Triblio User</h1>
<input id="search" placeholder="Search for a user" />
</div>
<div class="breadcrum-wrapper">
<div class="breadcrum">
<a id="breadcrum-user-list">User List</a>
</div>
<div class="breadcrum">
<a id="breadcrum-user-saved-list">Saved Users</a>
</div>
</div>
</nav>
<div class="table-wrapper">
<table id="users-table">
<thead>
<th id="table-header" colspan="4">
</th>
</thead>
<tbody>
<tr>
<th>User Name</th>
<th>Email</th>
<th>Action</th>
</tr>
</tbody>
</table>
<table id="saved-users-table">
<thead>
<th id="saved-table-header" colspan="5">
Saved Users
</th>
</thead>
<tbody>
<tr>
<th>User Name</th>
<th>Email</th>
<th>Org</th>
<th>Action</th>
<th>Remove</th>
</tr>
</tbody>
</table>
</div>
</div>
<script src="index.js" type="text/javascript"></script>
</body>
</html>