summaryrefslogtreecommitdiff
path: root/apps/um/views/pages/users/404.html.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/um/views/pages/users/404.html.php')
-rw-r--r--apps/um/views/pages/users/404.html.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/um/views/pages/users/404.html.php b/apps/um/views/pages/users/404.html.php
new file mode 100644
index 0000000..00f9dca
--- /dev/null
+++ b/apps/um/views/pages/users/404.html.php
@@ -0,0 +1,10 @@
+<?php global $VARS;
+$t = $VARS['template'];
+$username = $VARS['username'];
+
+$t->status('404 Not Found');
+$t->header('User Not Found');
+$t->tag('h1',array(),"404: Not Found");
+$t->paragraph('No user with the name <q>'.
+ htmlentities($username).'</q> exists.');
+$t->footer();