-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·24 lines (22 loc) · 816 Bytes
/
index.php
File metadata and controls
executable file
·24 lines (22 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
require_once 'functions.php';
?>
<!DOCTYPE html>
<html>
<head>
<title>CoderDojo Whitechapel - Halloween 2016</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="home-container">
<h1>Halloween 2016</h1>
<p>Welcome to the 2nd CoderDojo Whitechapel Halloween Special!</p>
<hr />
<p>Choose from one of the options below:</p>
<p class="alert alert-warning">Are you part of a team? Then get your coding and physical task by clicking the <strong>Get Task</strong> button.</p>
<a href="tasks/get.php" target="_blank" class="btn btn-lg btn-success">Get Task</a>
<a href="scoreboard" target="_blank" class="btn btn-lg btn-warning">Scoreboard</a>
</div>
</body>
</html>