-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
51 lines (43 loc) · 1.74 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
<?php
require "config/config.php";
session_start();
?>
<!doctype html>
<html lang="en">
<head>
<?php include "inc/head.php"; ?>
</head>
<body>
<?php include "inc/header.php"; ?>
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active" data-interval="4000">
<img src="img/3.jpeg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-interval="4000">
<img src="img/06.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item" data-interval="4000">
<img src="img/07.jpg" class="d-block w-100" alt="...">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!-- Include JavaScript CDN -->
<?php include "inc/js.php"; ?>
<!-- Include custom JavaScript -->
<script src="js/qticket.js"> </script>
</body>
</html>