diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-09-05 18:59:08 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-09-05 18:59:08 -0400 |
commit | 710e269b328ec055f90d4521ef8806fa1b4ea83a (patch) | |
tree | 86f613998ac3371c96078d4304db20835ed32b53 | |
parent | 70557422c2d999b85fd7ba45718da357f022fcfd (diff) |
Update TODO/Bugs in README.txt, change appearance a bit
-rw-r--r-- | README.txt | 11 | ||||
-rw-r--r-- | src/views/pages/index.html.php | 2 | ||||
-rw-r--r-- | style.css | 2 |
3 files changed, 10 insertions, 5 deletions
@@ -104,9 +104,14 @@ users, and `users/index' handles PUTing an updated user index. BUGS/TODO --------- -When creating a new user, if something goes wrong (illegal/existing -name, password missmatch), it isn't "reported", and the user will be -sitting at "users/new" without any feedback about what went wrong. +* Installer + 1. 'baseurl' in the 'conf' table is not set + 2. During stage 2 (first user creation) the stylesheet is not applied + (probably due to number 1) + 3. The created user is not activated. +* users/index + 4. It is impossible to de-activate a user (that field is only sent + if the box is checked, so you uncheck it, but that's never sent). The End ------- 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(); @@ -52,4 +52,4 @@ table input { font-weight: bold; color: red; } .http404 { - color: red; }
\ No newline at end of file + color: red; } |