-
Notifications
You must be signed in to change notification settings - Fork 0
/
findneeeds.php
45 lines (42 loc) · 1.18 KB
/
findneeeds.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
<!DOCTYPE html>
<?php
session_start();
include("includes/header.php");
?>
<?php
if(!isset($_SESSION['user_email'])){
header("location: index.php");
}
else{ ?>
<html>
<head>
<title>Welcomme to Home</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<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>
<link rel="stylesheet" href="styles/home_style2.css" media="all"/>
</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 Friends" name="search_user">
<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>
<?php } ?>