Browse Source

added fireworksgit status!

Erinn 8 years ago
parent
commit
4b64774e09
2 changed files with 19 additions and 1 deletions
  1. BIN
      includes/fireworks.gif
  2. 19 1
      index.php

BIN
includes/fireworks.gif


+ 19 - 1
index.php

@@ -9,7 +9,25 @@ if (LOGGEDIN && !isset($_GET['level'])) {
 	$l = (int)$_GET['level'];
 	$q = $db->query("SELECT * FROM level WHERE id = ".$l);
 	$leveldata = $q->fetchArray();
-	if (!$leveldata) exit('no such level');
+	if (!$leveldata) {
+		include 'header.inc.php';
+		?>
+		<div style="text-align:center; min-height:100%;">
+			<h3>Congratulations!</h3>
+			<p>You beat the last level in the game!</p>
+
+			<p><img src="./includes/fireworks.gif"></p>
+
+			<p>You may want to go <a href="./">look over the levels</a> to make sure you didn't miss any.</p>
+
+			<p>Otherwise, give yourself a pat on the back! You're a real hacker now!</p>
+
+			<div style="height:150px;"></div>
+		</div>
+		<?php
+		include 'footer.inc.php';
+		exit();
+	}
 } else {
 	$leveldata = array('id' => -1, 'filename' => 'login/login', 'name' => 'CS4G Netsim');
 }