summaryrefslogtreecommitdiff
path: root/src/views/pages/messages/401.html.php
blob: 0b24f80810175eb3ed3b2ee95b9bc5a9dcfe8c78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php global $VARS;
$t = $VARS['template'];

$t->status('401 Unauthorized');
$t->header('Unauthorized');
$t->tag('h1', array(), "401: Unauthorized");
if ($VARS['uid']===false) {
	// Not logged in
	$t->paragraph('You need to be logged in to view messages.');
} else {
	// Logged in, so the account must not activated
	$t->paragraph('Your account needs to be activated by an administrator '.
	              'to view messages.');
}
$t->footer();