-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
167 lines (140 loc) · 6.17 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!-- Header file -->
<?php include_once 'api/header.php'; ?>
<!-- Navbar file -->
<?php include_once 'api/navbar.php'; ?>
<?php require_once 'controller/authController.php'; ?>
<!-- Main Content goes here -->
<main>
<div id="home">
<div class="main-image" style="background-image: url('img/home_bg.jpg'); background-position: 0px 0px; width:100%;"></div>
<div class="home-wrapper">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<!-- home content -->
<div class="col-md-6 col-md-offset-2 mt-50">
<div class="home-content">
<h1>WELCOME TO LECTURE BOOKING</h1>
<h4 class="lead">Bringing the Lecture Theatre to your doorstep.</h4>
<p class="text-white"> Click here to <a href="#venues-view" class="main-btn font-weight-bold"> View </a>Booked and Available Venues</p>
</div>
</div> <!-- /home content -->
<!-- //home colomn -->
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /home-wrapper -->
</div>
<!-- /home -->
<!-- Section on Overview of Site -->
<section class="cards-section">
<div class="container cards-row" >
<h1 class="text-center" style="padding:20px;">OVERVIEW OF SITE</h1>
<div class="row card-deck">
<!-- Card-row -->
<div class="card text-black text-center bg-white col-md-6 col-lg-6 col-xs-12 shadow p-3 mb-5 bg-white rounded">
<!-- Card-->
<div class="card-body">
<!-- Card-body -->
<h5 class="card-title">Viewing Booked Venues</h5>
<p class="card-text">Any visitor on this page is allowed to view booked and available lecture venues.</p>
<p class="card-text">Click on the button below to book a venue.</p>
</div><!-- /Card-body -->
<div class="card-footer"><!-- Card-footer -->
<a href="#venues-view" class="btn btn-primary">View Venues</a>
</div><!-- /Card-footer -->
</div>
<!-- /Card -->
<div class="card text-black text-center bg-white col-md-6 col-lg-6 col-xs-12 shadow p-3 mb-5 bg-white rounded">
<!-- Card -->
<div class="card-body">
<!-- Card-body -->
<h5 class="card-title">Booking a venue</h5>
<p class="card-text">Association Executives and Senior members can book a venue after being registered.</p>
<p class="card-text">Click on the button below to book a venue.</p>
</div>
<!-- /Card-body -->
<div class="card-footer">
<!-- /Card-footer -->
<a href="login.php" class="btn btn-primary">Book Venue</a>
</div>
<!-- /Card-footer -->
</div>
<!-- /Card -->
</div>
<!-- /Card-row Card-deck-->
<div class= "row card-deck"><!-- Card-row Card-deck -->
<div class="card text-black text-center bg-white col-md-6 col-lg-6 col-xs-12 shadow p-3 mb-5 bg-white rounded">
<!-- Card -->
<div class="card-body"><!-- Card-body -->
<h5 class="card-title">Who is allowed to register or book a venue?</h5>
<p class="card-text">Senior Members, Security Guards and Association Executives are users that are allowed to register and/or book a venue.</p>
<p class="card-text">Click on the button below to register.</p>
</div>
<div class="card-footer">
<!-- Card-footer -->
<a href="register.php" class="btn btn-primary">Register</a>
</div>
<!-- /Card-footer -->
</div><!-- /Card -->
<!-- Card -->
<div class="card text-black text-center bg-white col-md-6 col-lg-6 col-xs-12 shadow p-3 mb-5 bg-white rounded">
<div class="card-body">
<!-- Card-body -->
<h5 class="card-title">Having Issues?</h5>
<p class="card-text"><a href="#contact">Contact the developers</a> with any issues you might have or See Freqently Asked Questions <a href="faq.php">(FAQ)</a>.</p>
<p class="card-text">Click on a button below to send us a message or see FAQs.</p>
</div>
<!-- /Card-body -->
<div class="card-footer">
<!-- Card-footer-->
<a href="contact.php" class="btn btn-primary">Send Message</a>
<a id="about" href="faq.php" class="btn btn-primary">FAQs</a>
</div>
<!-- /Card-footer -->
</div>
<!-- /Card -->
</div>
<!-- /Card-row Card-deck -->
</div>
<!-- /Card-Container -->
</section>
<!--End of HomePage Introduction -->
<!-- About Us -->
<?php include './about.php' ?>
<?php include 'venues/venues_index.php' ?>
<!-- End of Venues Section -->
<!--================Team Area =================-->
<!--================End Team Area =================-->
<section id="suggestion">
<div class="container" >
<div class="row">
<div class="col-lg-12" style="margin-top: 10px;">
<form action="" method="post">
<div class="form-group">
<label for="suggestion" style="color:white; "><h4>Suggestions: </h4></label>
<input name="message" type="text" class="form-control form-control-lg" id="suggestion" placeholder="Enter your suggestions here" style="height:40px;">
<div class="form-group">
<button type="submit" name="suggestion" class="btn btn-success btn-lg" >SUBMIT</button>
</div>
</div>
</div>
</div>
</section> <!-- suggestion end -->
</main>
<!-- End of Main Content -->
<!-- Footer -->
<?php include_once 'api/footer.php'; ?>
<!-- SCRIPTS -->
<!-- JQuery -->
<!-- Bootstrap tooltips popper -->
<script src="/lecture_2/assets/js/popper.min.js"></script>
<!-- Bootstrap core JavaScript -->
<script src="/lecture_2/assets/js/bootstrap.min.js"></script>
<!-- My custom JavaScript -->
<script src="/lecture_2/assets/js/main.js"></script>
</body>
</html>