summaryrefslogtreecommitdiff
path: root/apps/um/views/pages/auth/index.html.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/um/views/pages/auth/index.html.php')
-rw-r--r--apps/um/views/pages/auth/index.html.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/um/views/pages/auth/index.html.php b/apps/um/views/pages/auth/index.html.php
new file mode 100644
index 0000000..ac80140
--- /dev/null
+++ b/apps/um/views/pages/auth/index.html.php
@@ -0,0 +1,12 @@
+<?php global $VARS;
+$t = $VARS['template'];
+$username = $VARS['username'];
+
+$t->header('Authentication');
+
+$t->openTag('div',array('class'=>'login'));
+$t->text("Logged in as ".htmlentities($username).'.');
+$t->logout_button('Logout');
+$t->closeTag('div');
+
+$t->footer(); \ No newline at end of file