-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout_us.php
68 lines (64 loc) · 2.36 KB
/
about_us.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
<?php
include('header.php');
include('connection.php');
extract($_REQUEST);
if(isset($send))
{
mysqli_query($con,"insert into feedback values('','$n','$e','$mob','$msg')");
$msg= "<h4 style='color:green;'>Feedback Sent Successfully</h4>";
}
?>
<body class="bg">
<div class="container">
<!-- start #header -->
<header id="header">
<!-- start #menu -->
<?php
include('navbar.php')
?>
<!-- end #menu -->
</header>
<!-- end #header -->
<!-- start main -->
<main>
<!-- start banner -->
<?php include('banner.php') ?>
<!-- end banner -->
<!-- start about us -->
<section class="container mt-5">
<div class="row">
<div class="col-md-6">
<h3>About Us</h3>
<p>Hotel Sea Alif is one of the living standard luxury hotels in Cox's Bazaar in affordable for
all classes.</p>
</div>
<div class="col-md-6 forms">
<h3>Queries</h3>
<?php echo @$msg; ?>
<!-- <div class="container justify-content-center align-items-center my-3">
<p>Name: <input type="text"></p>
<p>Phone: <input type="number"></p>
<p>Email: <input type="email"></p>
<p>Comments: <input type="text"></p>
</div> -->
<form action="#" method="post"><br>
<div class="form-group">
<input type="text" name="n" class="form-control" id="#" placeholder="Enter Your Name" required>
</div>
<div class="form-group">
<input type="Email" name="e" class="form-control" id="#" placeholder="Email" required>
</div>
<div class="form-group">
<input type="text" name="mob" class="form-control" id="#" placeholder="Mobile Number" required>
</div>
<div class="form-group">
<textarea type="Text" name="msg" class="form-control" id="#" placeholder="Comments" required></textarea>
</div>
<input type="submit" value="Submit" name="send" class="btn btn-primary btn-group-justified" required>
</form>
</div>
</div>
</section>
<!-- end about us -->
</main>
<!-- end main -->