-
Notifications
You must be signed in to change notification settings - Fork 0
/
salon_searched.php
97 lines (70 loc) · 1.64 KB
/
salon_searched.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php session_start(); ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Salon</title>
<link rel="stylesheet" type="text/css" href="include_files/mystyle.css">
<style>
body {
background-color: palevioletred;
}
.homepage {
background-color: #d3d3d340;
padding: 50px;
text-align: center;
}
.search_input {
display: inline-block;
}
.txt_input {
padding: 5px;
font-size: 18px;
}
.result {
padding: 5px;
border: 2px solid grey;
margin: 5px;
}
.main_div {
padding: 5px;
text-align: center;
}
.sub_div{
width: 30%;
display: inline-block;
margin: 5px;
}
</style>
</head>
<body>
<?php include_once "navigation.php"; ?>
<!-- <img src="include_files/image/slides.png" height="500"> -->
<div class="homepage">
<h1 style="text-align: center;">Virtual University Project</h1>
<hr>
<br>
<br>
<br>
<form action="salon_searched.php" method="post">
<div class="search_input">
<strong>Search Salon</strong>
<br>
<input class="txt_input" type="text" name="salon_name" required="">
</div>
<div class="search_input">
<input class="txt_input" name="submit" type="submit" value="Search">
</div>
</form>
</div>
<br>
<br>
<div class=""></div>
<br>
<br>
<br>
<br>
<br>
<script src="include_files/jquery-3.1.1/jquery.min.js"></script>
</body>
</html>