summaryrefslogtreecommitdiff
path: root/tasks.php
diff options
context:
space:
mode:
Diffstat (limited to 'tasks.php')
-rw-r--r--tasks.php13
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
+));
+
+?>