-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdmin.html
More file actions
132 lines (73 loc) · 3.46 KB
/
Admin.html
File metadata and controls
132 lines (73 loc) · 3.46 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
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
<!DOCTYPE html>
<head>
<title>Admin</title>
<link rel="icon" href="Images/Brogrammerz.jpg">
<link rel="stylesheet" href="Admin.css">
</head>
<body>
<div class="body">
<nav>
<div class="logo-box">
<img src="Images/Brogrammerz.jpg" alt="Image Not Available">
</div>
<h1>Admin</h1>
<div class="logo-box">
<img src="Images/Brogrammerz.jpg" alt="Image Not Available">
</div>
</nav>
<hr>
<div class="profile-options">
<div class="profile-options-left"></div>
<div class="profile-options-right">
<button onclick="logout()">Log Out</button>
</div>
</div>
<hr>
<div class="data">
<div class="total-users-box">
<span>Total Users</span> <span>:</span> <span id="total-users"></span>
</div>
<hr>
<div class="filter-options">
<div class="filter-options-left">
<input id="name-filter" class="filter-input" type="text" placeholder="Name">
<select id="gender-filter" class="filter-input">
<option selected value="">Please Select User's Gender</option>
<option value="Male">Male</option>
<option value="Female">Female</option>
<option value="Other">Other</option>
</select>
<select id="relationship-status-filter" class="filter-input">
<option selected value="">Please Select User's Relationship Status</option>
<option value="Single">Single</option>
<option value="In A Relationship">In A Relationship</option>
<option value="Married">Married</option>
<option value="Divorced">Divorced</option>
<option value="Widowed">Widowed</option>
</select>
<input id="hometown-filter" class="filter-input" type="text" placeholder="Hometown">
<input id="current-city-filter" class="filter-input" type="text" placeholder="Current City">
<input id="school-filter" class="filter-input" type="text" placeholder="School">
<input id="college-filter" class="filter-input" type="text" placeholder="College">
<input id="job-filter" class="filter-input" type="text" placeholder="Job">
<input id="programming-language-filter" class="filter-input" type="text"
placeholder="Programming Language">
<input id="project-filter" class="filter-input" type="text" placeholder="Project">
</div>
<div class="filter-options-right">
<button onclick="filter_users()">Filter Users</button>
<button onclick="clear_filter()">Clear Filter</button>
</div>
</div>
<hr>
<p id="found-users">Found Users : <span id="found-users-number"></span></p>
<pre id="filter-results"></pre>
</div>
<hr>
<footer>
<span>© <a href="https://hitarthpathak.github.io" target="_blank">Hitarth Pathak</a></span>
</footer>
</div>
</body>
<script src="Admin.js"></script>
</html>