summaryrefslogtreecommitdiff
path: root/public/app/views/welcome.php
diff options
context:
space:
mode:
Diffstat (limited to 'public/app/views/welcome.php')
-rw-r--r--public/app/views/welcome.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/public/app/views/welcome.php b/public/app/views/welcome.php
new file mode 100644
index 0000000..de00645
--- /dev/null
+++ b/public/app/views/welcome.php
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <title><?=SITE_TITLE?> - Welcome!</title>
+
+ <?php // header includes
+ ////////////////////////////////////////////////////////////////////////
+ Render::view('components/header_includes');
+ ?>
+
+</head>
+<body class='classroom'>
+
+ <?php // top-bar
+ ////////////////////////////////////////////////////////////////////////
+ Render::view('components/top-bar');
+ ?>
+
+ <?php print_r($_SESSION); ?>
+ <?php print_r($_COOKIE); ?>
+ <?php
+ if (isset($_SESSION)) echo 'session seted';
+ ?>
+ <?=var_dump($_SESSION[UserTokenInterface::DEFAULT_PREFIX_KEY])?>
+
+</body>
+</html> \ No newline at end of file