<?php global $VARS;
$t = $VARS['template'];

$t->header('Main Page');
$t->tag('h1', array(), "Message Manager");
$t->paragraph($t->link($t->url('users/new'),'Register to be on the team', true), array('style'=>'font-size:5em'));
$t->link($t->url('users'), 'List of all users');
$t->footer();