blob: dc7ad0d9c580e751d0e18a46eed963c762145c3b (
plain)
1
2
3
4
5
6
7
8
9
|
<?php global $VARS;
$t = $VARS['template'];
$t->status('403 Forbidden');
$t->header('Create new user');
$t->paragraph("Sorry, new user registration is disabled.");
$t->footer();
|