-
Notifications
You must be signed in to change notification settings - Fork 1
/
members.php
80 lines (68 loc) · 1.71 KB
/
members.php
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
<!DOCTYPE html>
<?php
session_start();
include("includes/header.php");
if(!isset($_SESSION['user_email'])){
header("location: index.php");
}
?>
<html>
<head>
<title><Find Friends></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style/home_style2.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
#find_people{
border: 5px solid #e6e6e6;
padding: 40px 50px;
}
#result_posts{
border: 5px solid #e6e6e6;
padding: 40px 50px;
}
form.search_form input[type=text]{
padding: 10px;
font-size: 17px;
border-radius: 4px;
border: 1px solid grey;
float: left;
width: 80%;
background: #f1f1f1;
}
form.search_form button{
float: left;
width:20%;
padding: 10px;
font-size:17px;
border: 1px solid grey;
border-left: none;
cursor: pointer;
}
</style>
</head>
<body>
<div class="row">
<div class="col-sm-12">
<center> <h2> Find New People </h2> </center><br><br>
<div class="row">
<div class="col-sm-4">
</div>
<div class="col-sm-4">
<form class="search_form" action="">
<input type="text" placeholder="Search Friend" name="search_btn">
<button class="btn btn-info" type="submit" name="search_user_btn">
Search </button>
</form>
</div>
<div class="col-sm-4">
</div>
</div><br><br>
<?php search_user();?>
</div>
</div>
</body>
</html>