diff options
author | Kyle McFarland <tfkyle@gmail.com> | 2018-01-31 00:51:07 -0600 |
---|---|---|
committer | Kyle McFarland <tfkyle@gmail.com> | 2018-01-31 00:51:07 -0600 |
commit | 61d1aa04d8d44b17bfe6dace90088669fc6c3df8 (patch) | |
tree | 7ede15c880e4c41a18cded46fe6d03fb2dc4543b /tasks.php | |
download | mcoop-master.zip mcoop-master.tar.gz mcoop-master.tar.bz2 |
* Registration system's almost done
* Just part way through implementing tasks
So not much done yet, but it's a start.
Diffstat (limited to 'tasks.php')
-rw-r--r-- | tasks.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tasks.php b/tasks.php new file mode 100644 index 0000000..5834bdf --- /dev/null +++ b/tasks.php @@ -0,0 +1,13 @@ +<?php +require_once("common/config.php"); + +$danger_alerts = array(); +$success_alerts = array(); + +echo $twig->render("tasks.tmpl", array( + "danger_alerts" => $danger_alerts, + "success_alerts" => $success_alerts, + "sess_info" => $sess_info +)); + +?> |