summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2011-09-05 18:59:08 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2011-09-05 18:59:08 -0400
commit710e269b328ec055f90d4521ef8806fa1b4ea83a (patch)
tree86f613998ac3371c96078d4304db20835ed32b53
parent70557422c2d999b85fd7ba45718da357f022fcfd (diff)
Update TODO/Bugs in README.txt, change appearance a bit
-rw-r--r--README.txt11
-rw-r--r--src/views/pages/index.html.php2
-rw-r--r--style.css2
3 files changed, 10 insertions, 5 deletions
diff --git a/README.txt b/README.txt
index 5d674af..e1a7280 100644
--- a/README.txt
+++ b/README.txt
@@ -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();
diff --git a/style.css b/style.css
index ed48f4e..5e960b3 100644
--- a/style.css
+++ b/style.css
@@ -52,4 +52,4 @@ table input {
font-weight: bold;
color: red; }
.http404 {
- color: red; } \ No newline at end of file
+ color: red; }