-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusers.php
More file actions
57 lines (53 loc) · 1.14 KB
/
users.php
File metadata and controls
57 lines (53 loc) · 1.14 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
<style type="text/css">
a:hover{
color: white;
text-decoration: none;
}
.Explore{
border-bottom: 2px solid #00b8ff;
color: #00b8ff;
}
.users{
border-bottom: 2px solid #00b8ff;
color: #00b8ff;
}
.link{
color: white;
cursor: pointer;
}
</style>
<?php
include('header.php');
?>
<div class="container-fluid mb-5" id="mySite">
<div class="row justify-content-center">
<div class="col-lg-12">
<div class="row">
<div class="col-lg-12 p-3 text-white">
<div class="d-flex flex-row font-weight-bold">
<div class="">
<h5><a href="explore.php" class="p-2 tranding ">Trending</a></h5>
</div>
<div class="">
<h5><a href="users.php" class="p-2 users ">Users</a></h5>
</div>
</div>
<hr>
</div>
<div class="col-lg-12">
<div class="row justify-content-center">
<div class="col-lg-5">
<?php require"c_php/userlist.php"?>
</div>
</div>
</div>
<div class="col-lg-12 mt-2 text-center ">
<hr>
<?php require"footer.php";?>
</div>
</div>
</div>
</div>
</div>
</body>
</html>