-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
112 lines (97 loc) · 3.72 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
<?php
include('config.php');
include('class/userClass.php');
$userClass = new userClass();
$userDetails = $userClass->userDetails($_SESSION['uid']);
include('session.php');
$userDetails = $userClass->userDetails($session_uid);
?>
<!--
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.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<?php
include "head.php";
?>
<title>Main Page</title>
<link href="css/index.css" rel="stylesheet">
</head>
<body>
<?php
include "navbar.php";
?>
<main>
<button onclick="topFunction()" id="myBtn" title="Go to top">Top<img src="images/download.png" alt="to top button" width="25"></button>
<div class="index-1">
<video class="emb-video" controls autoplay poster="/images/videoposter.JPG">
<source src="/video/afterschool.mp4" type="video/mp4">
<track src="captions_en.vtt" kind="captions" srclang="en" label="English_captions">
Your browser does not support the video tag.
</video>
</div>
<?php
if ($_SESSION['uid']) {
include "extraindex.php";
}
?>
<!--This is a jumbotron!-->
<!--Implement bootstrap jumbotron class-->
<section class="jumbotron text-center">
<!--Display class to make heading more attractive-->
<h1 class="display-4">Work Hard, Play Harder</h1>
<hr class="my-4">
<p class="lead">
<a class="btn btn-outline-dark btn-lg" href="/signup.php" role="button">Apply CCA</a>
</p>
</section>
<div class="index-5">
<a href="/signup.php">
<div class="index-content">
<div class="centered2">CCA Enrollment</div>
</div>
</a>
</div>
<!--This is a jumbotron!-->
<!--Implement bootstrap jumbotron class-->
<section class="jumbotron text-center">
<!--Display class to make heading more attractive-->
<h1 class="display-4">Embark on a Fun & Exciting Journey</h1>
<hr class="my-4">
<p class="lead">
<a class="btn btn-outline-dark btn-lg" href="/oversea.php" role="button">Trips & Exchanges</a>
</p>
</section>
<div class="index-7">
<a href="/oversea.php">
<div class="index-content">
<div class="centered4">Take <br>Me</div>
</div>
</a>
</div>
<!--This is a jumbotron!-->
<!--Implement bootstrap jumbotron class-->
<section class="jumbotron text-center">
<!--Display class to make heading more attractive-->
<h1 class="display-4">About Us, About Our Future</h1>
<hr class="my-4">
<p class="lead">
<a class="btn btn-outline-dark btn-lg" href="/contactus.php" role="button">See More</a>
</p>
</section>
<div class="index-6">
<a href="/contactus.php">
<div class="index-content">
<div class="centered3">View <br>Details</div>
</div>
</a>
</div>
</main>
<?php
include "footer.php";
?>
</body>
</html>