summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorKyle McFarland <tfkyle@gmail.com>2018-01-31 00:51:07 -0600
committerKyle McFarland <tfkyle@gmail.com>2018-01-31 00:51:07 -0600
commit61d1aa04d8d44b17bfe6dace90088669fc6c3df8 (patch)
tree7ede15c880e4c41a18cded46fe6d03fb2dc4543b /index.php
downloadmcoop-61d1aa04d8d44b17bfe6dace90088669fc6c3df8.zip
mcoop-61d1aa04d8d44b17bfe6dace90088669fc6c3df8.tar.gz
mcoop-61d1aa04d8d44b17bfe6dace90088669fc6c3df8.tar.bz2
Initial importHEADmaster
* Registration system's almost done * Just part way through implementing tasks So not much done yet, but it's a start.
Diffstat (limited to 'index.php')
-rw-r--r--index.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/index.php b/index.php
new file mode 100644
index 0000000..7d5b10c
--- /dev/null
+++ b/index.php
@@ -0,0 +1,14 @@
+<?php
+namespace mcoop;
+
+require_once("vendor/autoload.php");
+require_once("common/config.php");
+
+echo $twig->render("index.tmpl", array(
+ "danger_alerts" => array(),
+ "success_alerts" => array(),
+ "sess_info" => $sess_info,
+ "sitename" => $config->website_name
+));
+
+?>