-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
48 lines (27 loc) · 1.33 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
<?php
include 'connection.php';
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Spotlight</title>
<!-- STYLESHEETS -->
<link rel="stylesheet" href="assets/css/flexboxgrid.min.css" type="text/css">
<link rel="stylesheet" href="assets/css/_font-awesome.min.css.scss" type="text/css">
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
</head>
<body>
<?php include 'navbar.php'; ?>
<section class="section-resized">
<?php include 'index-text.php'; ?>
<p>Want to know more? <a href="login.php" class="subtitle">Login or Register</a></p>
<div class="row">
<div class="subtitle col-xs-12 start-xs">
<p id="calendar">PREMIERES CALENDAR</p>
<iframe src="https://calendar.google.com/calendar/embed?showTitle=0&showPrint=0&showTabs=0&showCalendars=0&height=600&wkst=1&hl=en&bgcolor=%23ffffff&src=anafilipavc%40gmail.com&color=%23e3e5a9&ctz=Europe%2FLisbon" style="border-width:0" width="800" height="600" frameborder="0" scrolling="no"></iframe>
</div>
</div>
</section>
</body>
</html>