-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
23 lines (23 loc) · 860 Bytes
/
game.html
File metadata and controls
23 lines (23 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<title>Game</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<meta charset="UTF-8">
</head>
<body>
<form action="logout.php">
<h4>You are logged in as: <?php echo($_SESSION['user']); ?></h4>
<button type="submit">Logout</button>
</form>
<form action="game_end.php">
<button type="submit">Quit game</button>
</form>
<script type="text/javascript" src="js/phaser.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script type="text/javascript" src="js/Team.js"></script>
<script type="text/javascript" src="js/Game.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>