<?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();