summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--index.php6
-rw-r--r--pages/tutorial.php2
2 files changed, 7 insertions, 1 deletions
diff --git a/index.php b/index.php
index 3167ffb..7144d63 100644
--- a/index.php
+++ b/index.php
@@ -24,7 +24,11 @@ if ($_SESSION['isAdmin'] == true) {
$Links['faq'] = "FAQ";
$Links['about'] = "About Us";
-switch (strtolower($_GET[page])) {
+$request = strtolower($_GET[page]);
+if ($request == '' AND $_SESSION['accepted'] <> 1)
+ $request = 'tutorial';
+
+switch ($request) {
case "test":
require("pages/test.php");
diff --git a/pages/tutorial.php b/pages/tutorial.php
index 85d5868..ed4aa9e 100644
--- a/pages/tutorial.php
+++ b/pages/tutorial.php
@@ -287,6 +287,8 @@ include('./includes/maps.php');
//Lightup; Next-Button
?>
+<a href='home' style='padding-left:7px;'>Skip Tutorial</a>
+
<div id="tut-wrapper">
<div style='height:80px;' id='1,instructions'>
<p>The objective in this game is to create the longest <i>path</i> between the start and the finish.<br>Below is a demonstration.<br>Press <b>Go!</b></p>;