-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
123 lines (108 loc) · 5.7 KB
/
index.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html lang="en">
<head>
<title>TUMMY FOR YUMMY</title>
<link rel="icon" href="image/1004_Logo_2.png">
<meta name="description" content="YUM-YUM is a Singapore restaurant and catering business. Wide range of affordable and delicious food. Open all-day, seven days a week.">
<meta name="keywords" content="restaurant, catering, menu, reservation, home, food, open, 7">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/header_footer.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css" type="text/css" />
<script defer src="js/admin.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
</head>
<body>
<?php
include "navbar.inc.php";
?>
<main>
<div class="container-fluid">
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<ul class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
</ul>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active ">
<img src="image/restaurant3wide.jpg" alt="reservationimage" class="img-responsive">
<section class="carousel-caption">
<h1 class="carousel-txt-size">WELCOME</h1>
<button onclick="window.location.href='reservation.php'" class="btncaro">RESERVE A
TABLE</button>
</section>
</div>
<div class="item">
<img src="image/catering.jpg" alt="cateringimage" class="img-responsive">
<section class="carousel-caption">
<h1 class="carousel-txt-size">CATERING</h1>
<button onclick="window.location.href='catering.php'" class="btncaro">ORDER NOW</button>
</section>
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<div id="container_aboutus" class="container">
<div class="row">
<section class="col-sm-6">
<h2 class="history-txt-size">HISTORY</h2>
<h2>ABOUT US</h2>
<P>Welcome to YUM-YUM, a humble restaurant where our founder wanted to provide customer with yummy
food to fill their belly at affordable prices</P>
<p>To widen our reach to more customer, our restaurant also provide catering services that provide
the same quality food our physical restaurant serve</p>
</section>
<figure id="home" class="col-sm-6">
<img src="image/kitchen.jpg" class="img-responsive" alt="kitchen">
<!--Url: https://unsplash.com/photos/zk5vJ8Duw9k | Author: Hansel Louis | Publish: August, 2019 | Publisher: Unsplash | Visited: October 5, 2019-->
</figure>
</div>
<button onclick="window.location.href='about_contact.php'" class="btn-RM">READ MORE</button>
</div>
</main>
<!-- Admin Login Modal Form -->
<div id="adminLogin" class="modal">
<span onclick="document.getElementById('adminLogin').style.display='none'" class="close"
title="Close Modal">×
</span>
<!-- Modal Content -->
<form class="modal-content animate" action="admin/process_login.php" method="post">
<div class="flex-container">
<label for="email"><b>Enter Email</b></label>
<input type="email" id="email" placeholder="Enter email" name="email" pattern="[^@]+@[^@]+\.[a-zA-Z]{2,}" required>
<label for="password"><b>Enter Password</b></label>
<input type="password" id="password" placeholder="Enter Password" name="password" required>
<button type="submit" id="loginbtn">Login</button>
<label>
<input type="checkbox" id="rememberme" checked="checked"> Remember me
</label>
</div>
<div class="containerbottom">
<button type="button" onclick="document.getElementById('adminLogin').style.display='center'"
class="cancelbtn btn btn-dark" data-dismiss="modal">Cancel</button>
</div>
</form>
</div>
<?php
include "footer.inc.php";
?>
</body>
</html>