-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsecond.php
143 lines (105 loc) · 4.11 KB
/
second.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
<?php
include_once 'header.php';
?>
<!DOCTYPE html>
<head>
<title>Signup</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<style>
h2,a{
color:white;
}
h1
{
font-family: monospace;
font-weight:normal;
font-size:400%;
}
p{
color:#white;
}
ol
{
font-size: 250%;
padding-left: 0.5cm;
list-style: decimal;
padding-left:15.75cm;
color:white;
}
li
{
display: list-item;
list-style-position: inside;
color:white;
}
body{
background-image: url("images/seats.jpg");
-moz-background-size: cover;
-webkit-background-size: cover;
background-size:100% 110vh;
background-position: top center !important;
background-repeat: no-repeat !important;
background-attachment: fixed;
}
</style>
<body style="background-color:powderblue; color: white">
<?php
echo '<h1 align=middle ><br><b>Welcome '. $_SESSION['u_first'].'!</b></h1><br><br>';
?>
<p style="background-color: transparent;">
<center>
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="item active">
<img src="images/gangsp.jpg" alt="Gangs of Wasseypur 2" style="width: 50% height:50%;">
</div>
<div class="item">
<img src="images/neramp.jpg" alt="Neram" style="width: 50%; height: 50%;">
</div>
<div class="item">
<img src="images/dunkirkp.jpg" alt="Dunkirk" style="width: 50%; height:50%;">
</div>
<div class="item">
<img src="images/newtonp.jpg" alt="Newton" style="width: 50%; height: 50%;">
</div>
<div class="item">
<img src="images/jlp.png" alt="Justice League" style="width: 50%; height: 50%;">
</div>
</div>
<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>
</center>
</p>
<br><br><br>
<h2 style=" text-align: center; font-family:monospace; font-size: 350%; padding-left:0.5cm;"><br><b>The Movies playing this week are:</b></h2>
<br><br><br>
<p>
<ol>
<li> <a style=" font-family: monospace;" href="gangs.php"><b>Gangs Of Wasseypur</b></a> </li>
<li> <a style=" font-family: monospace;" href="neram.php"><b>Neram</b></a> </li>
<li> <a style=" font-family: monospace;" href="dunkirk.php"><b>Dunkirk</b></a> </li>
<li> <a style=" font-family: monospace;" href="newton.php"><b>Newton</b></a> </li>
<li> <a style=" font-family: monospace;" href="jl.php"><b>Justice league</b></a> </li><br>
</ol>
</p>
</body>
<?php
include_once 'footer.php';
?>