-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactus.php
154 lines (137 loc) · 6.77 KB
/
contactus.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
<?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>Contact Us</title>
<link href="css/contactus.css" rel="stylesheet">
</head>
<body>
<?php
include "navbar.php";
?>
<main>
<section class="container-fluid">
<div class="contact-1 row">
<div class="col-md-6">
<div class="contact-centered">
<h1>About Us</h1>
<hr>
<div class="text2">At Miracle School, we turn your dreams into reality. Join us as we emerge and conquer any problems that you face in 1004 and beyond. We are sure that we will need you as we are only a 3 man team. Thank you for visiting this website.</div>
<hr>
</div>
</div>
<div class="col-md-6">
<!--Carousel-->
<div class="col-md-12">
<!-- Indicators -->
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1" ></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="carousel-item active">
<div class="carousel-images"><img src="images/schoolmain1.jpg" alt="School in the morning" class="sitbuilding-pic"></div>
<div class="carousel-caption">
<h2>School @ Morning</h2>
</div>
</div>
<div class="carousel-item">
<div class="carousel-images"><img src="images/schoolmain2.jpg" alt="School in the afternoon" class="sitbuilding-pic"></div>
<div class="carousel-caption">
<h2>School @ Afternoon</h2>
</div>
</div>
<div class="carousel-item">
<div class="carousel-images" ><img src="images/schoolmain.jpg" alt="School in the night" class="sitbuilding-pic"></div>
<div class="carousel-caption">
<h2>School @ Night</h2>
</div>
</div>
</div>
<!-- Controls -->
<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>
</div>
</div>
</div>
</section>
<button onclick="topFunction()" id="myBtn" title="Go to top">Top <img src="images/download.png" alt="to top button" width="25"></button>
<section class="creators">
<div class="thumbnail-title">
<h1 style="color:black;">
Site Creators
</h1>
</div>
<div class="row creators">
<article class="col-lg-4">
<div class="thumbnail-title">
<h2>Security Expert</h2>
</div>
<div class="card">
<img src="images/jacky.jpg" alt="Jacky" class="thumbnail-pic">
<div class="container">
<hr class="my-4">
<div class="text2"><b>Jacky Candy</b></div>
<p>2001677@sit</p>
</div>
</div>
</article>
<article class="col-lg-4">
<div class="thumbnail-title">
<h2>Hacker Mode</h2>
</div>
<div class="card">
<img src="images/ian.jpg" alt="Ian" class="thumbnail-pic">
<hr class="my-4">
<div class="container">
<div class="text2"><b>Ian Beast</b></div>
<p>2000941@sit</p>
</div>
</div>
</article>
<article class="col-lg-4">
<div class="thumbnail-title">
<h2>The Undefeated</h2>
</div>
<div class="card">
<img src="images/ipman.jpg" alt="Hou Liang" class="thumbnail-pic">
<div class="container">
<hr class="my-4">
<div class="text2"><b>Hou Liang</b></div>
<p>2000721@sit</p>
</div>
</div>
</article>
</div>
</section>
</main>
<?php
include "footer.php";
?>
</body>
</html>