-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExplore.html
More file actions
134 lines (74 loc) · 3.54 KB
/
Explore.html
File metadata and controls
134 lines (74 loc) · 3.54 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
133
134
<!DOCTYPE html>
<head>
<title>Explore</title>
<link rel="icon" href="Images/Brogrammerz.jpg">
<link rel="stylesheet" href="Explore.css">
</head>
<body>
<div class="body">
<nav>
<div class="logo-box">
<img src="Images/Brogrammerz.jpg" alt="Image Not Available">
</div>
<div class="search-box">
<input id="search-user-input" type="text" placeholder="Search Brogrammerz...">
<button onclick="search_users()">Search</button>
</div>
<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">
<a href="About.html">
<button>About</button>
</a>
<button onclick="ranking()">Ranking</button>
</div>
<div class="profile-options-right">
<button onclick="your_profile()">Your Profile</button>
</div>
</div>
<hr>
<div class="filter-options">
<div class="filter-options-left">
<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>
<div id="filter-results"></div>
<hr>
<footer>
<span>© <a href="https://hitarthpathak.github.io" target="_blank">Hitarth Pathak</a></span>
</footer>
</div>
</body>
<script src="Explore.js"></script>
</html>