This repository has been archived by the owner on Oct 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusers.html
53 lines (46 loc) · 1.46 KB
/
users.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="assets/img/logo.png">
<title>MPL | Users</title>
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/users.css">
<script src="assets/js/list-users.js"></script>
<script src="assets/js/main.js"></script>
<script src="assets/js/lr.js"></script>
</head>
<body>
<nav id="navbar"></nav>
<div class="content">
<div class="content-title">
<h1>
Users
</h1>
</div>
<div id="search" class="search-form flex-line flex-spaced">
<div class="flex-line">
<div class="search-input">
<input id="search-name" class="search-bar" type="search" placeholder="Search for username...">
</div>
</div>
</div>
<hr>
<div id="user_list" class="content-content">
</div>
<div class="content-buttons flex-line flex-spaced">
<button class="content-p-btn">
<<
</button>
<button id="back_btn" class="back-btn">
Go back
</button>
<button class="content-n-btn">
>>
</button>
</div>
</div>
<footer id="footer"></footer>
</body>
</html>