-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
149 lines (134 loc) · 5.34 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
<?php session_start();
include_once 'classes/db1.php';
?>
<!DOCTYPE html>
<html>
<head>
<title>UITS Event</title>
<?php require 'utils/styles.php'; ?>
</head>
<body>
<?php require 'utils/header.php'; ?>
<div class="content">
<div class="bgImage">
<div class="col-md-12">
<div class="container">
<div class="jumbotron">
<h1><strong>Explore<br></strong> Your Favorite Event</h1>
<p style="font-style: bold">"Limitation-It's just your imagination,so just stop thinking about limitation and think about your goal and run towards it to acheive the peak of your goal:)"</p>
<br><br>
</div>
</div>
</div>
</div>
<div class="container">
<div class="col-md-12">
<h1 class="text-center"><strong> Join your Favourite Events</strong></h1>
</div>
<div class="container">
<div class="col-md-12">
<hr>
</div>
</div>
<div class="row">
<section>
<div class="container">
<div class="col-md-4">
<img src="images/technical.jpg" class="img-responsive">
</div>
<div class="subcontent col-md-5">
<h1>Technical Events</h1>
<p>
EMBRACE YOUR TECHNICAL SKILLS BY PARTICIPATING IN OUR DIFFERENT TECHNICAL EVENTS!
</p>
<br><br>
<?php $id=1;
echo
'<a class="btn btn-info" href="viewEvent.php?id='.$id.'">View Technical Events</a>'
?>
</div>
</div>
</section>
</div>
<div class="container">
<div class="col-md-12">
<hr>
</div>
</div>
<div class="row">
<section>
<div class="container">
<div class="col-md-4">
<img src="images/gaming2.jpg" class="img-responsive">
</div>
<div class="subcontent col-md-5">
<h1>Gaming Events</h1>
<p>
EMBRACE YOUR GAMING SKILLS BY PARTICIPATING IN OUR DIFFERENT GAMING EVENTS!
</p>
<br><br>
<?php
$id=2;
echo
'<a class="btn btn-info" href="viewEvent.php?id='.$id .'"> View Gaming Events</a>'
?>
</div>
</div>
</section>
</div>
<div class="container">
<div class="col-md-12">
<hr>
</div>
</div>
<div class="row">
<section>
<div class="container">
<div class="col-md-4">
<img src="images/9.jpg" class="img-responsive">
</div>
<div class="subcontent col-md-5">
<h1>Cultural Events</h1>
<p>
EMBRACE YOUR CONFIDENCE BY PARTICIPATING IN OUR DIFFERENT ON-STAGE EVENTS!
</p>
<br><br>
<?php
$id=3;
echo
'<a class="btn btn-info" href="viewEvent.php?id='.$id .'">View Cultural Events</a>'
?>
</div>
</div>
</section>
</div>
<div class="container">
<div class="col-md-12">
<hr>
</div>
</div>
<div class="row">
<section>
<div class="container">
<div class="col-md-4">
<img src="images/7.jpg" class="img-responsive">
</div>
<div class="subcontent col-md-5">
<h1>Sports Events</h1>
<p>
EMBRACE YOUR TALENT BY PARTICIPATING IN OUR DIFFERENT OFF-STAGE EVENTS!
</p>
<br><br><br>
<?php
$id=4;
echo
'<a class="btn btn-info" href="viewEvent.php?id='.$id .'">View Sports Events</a>'
?>
</div>
</div>
</section>
</div>
</div>
<?php require 'utils/footer.php'; ?>
</body>
</html>