diff options
Diffstat (limited to 'src/views/pages')
-rw-r--r-- | src/views/pages/index.html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/views/pages/index.html.php b/src/views/pages/index.html.php index cf31759..71b0091 100644 --- a/src/views/pages/index.html.php +++ b/src/views/pages/index.html.php @@ -3,6 +3,6 @@ $t = $VARS['template']; $t->header('Main Page'); $t->tag('h1', array(), "Message Manager"); -$t->paragraph("This is the main index page."); +$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(); |