-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.php
More file actions
executable file
·63 lines (57 loc) · 2.51 KB
/
about.php
File metadata and controls
executable file
·63 lines (57 loc) · 2.51 KB
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
<?php
include 'includes/session.php';
include 'includes/dbConnect.php';
include 'includes/library.php';
?>
<!DOCTYPE html>
<html>
<?php
include 'includes/header.php';
?>
<body>
<?php
include 'includes/navigationBar.php';
?>
<div class="section" style="background-image: url(https://unsplash.it/1920/1080?image=131);">
<div class="container overlay-general">
<div class="row">
<div class="col-md-6">
<img src="assets/images/mockup1.jpg" class="img-responsive">
</div>
<div class="col-md-6">
<h1>Friendezvous</h1>
<h3>Organising meetings, redefined.</h3>
<p>Friendezvous was created with the sole aim to simplify the organisation
of meetings in a busy world. We experienced the difficulty of organising
meetings where we have to accomodate to everyone's schedule. To solve that,
we developed Friendezvous.
<br>
<br>Friendezvous was developed particularly for the <a href="http://orbital.comp.nus.edu.sg/">Orbital</a> 2015 project,
under Project Gemini Level. Orbital is a independent work module undertaken
at the National University of Singapore (NUS).</p>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h1 class="text-center">The Team</h1>
<p class="text-center">We are a team of two students from the National University of Singapore (NUS).</p>
</div>
</div>
<div class="row">
<div class="col-md-6">
<img src="assets/images/harish.png" class="center-block img-circle img-responsive">
<h3 class="text-center">Harish Venkatesan</h3>
<p class="text-center">Computer Engineering Student</p>
</div>
<div class="col-md-6">
<img src="assets/images/alvian.png" class="center-block img-circle img-responsive">
<h3 class="text-center">Alvian Prasetya</h3>
<p class="text-center">Computer Engineering Student</p>
</div>
</div>
</div>
<?php
include 'includes/footer.php';
?>
</body>
</html>