-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
37 lines (34 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Cap It</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/styles.css">
<script src="http://code.jquery.com/jquery-2.1.0.js"></script>
<script src="js/login.js"></script>
</head>
<body>
<div id="fb-root"></div>
<div class="container text-center">
<h1 class="textColour" style="display: none;">Cap It</h1>
<h2 class="textColour" style="display:none;">
Words with friends, draw my thing, and cards against humanity just had a baby.
</h2>
<div class="nav-container horizontal">
<ul class="list-unstyled">
<li id="menu_0">
<a href="" onclick="loadGamePage(); return false;" class="textColour">New Game</a>
</li>
<li id="menu_1">
<a href="index.php" class="textColour">Home</a>
</li>
<li id="menu_2">
<a href="about.php" class="textColour">About Cap-It</a>
</li>
</ul>
</div>
<fb:login-button show-faces="true" width="200" max-rows="1" scope="user_photos"></fb:login-button>
</div>
</body>
</html>