summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorChad Kieffer <chad@2tbsp.com>2008-12-18 02:50:40 +0000
committerChad Kieffer <chad@2tbsp.com>2008-12-18 02:50:40 +0000
commitc2598fe4d85f9c3b737ea40959f44bf04172eafa (patch)
treea37e613ffcc4e23638a315865ebdca3abc5a373c /modules
parentdc5faf0ebf64461246da9691d754e563c20e5f42 (diff)
Dialog polishing. They now resize their height. Updated form styles in the context of dialog display (don't show legends, fieldset border, or submit button).
Let's make sure that all forms generated are complete and well formed and then use JS and CSS to control their display and behavior in different contexts.
Diffstat (limited to 'modules')
-rw-r--r--modules/user/views/login.html.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/user/views/login.html.php b/modules/user/views/login.html.php
index 53f67641..c5057577 100644
--- a/modules/user/views/login.html.php
+++ b/modules/user/views/login.html.php
@@ -1,9 +1,12 @@
<? defined("SYSPATH") or die("No direct script access."); ?>
<ul id="gLoginMenu">
<? if ($user->guest): ?>
- <li><a href="<?= url::site("login") ?>" id="gLoginLink"><?= _("Login") ?></a></li>
+ <li><a href="<?= url::site("login") ?>"
+ title="<?= _("Login to Gallery") ?>"
+ id="gLoginLink"><?= _("Login") ?></a></li>
<? else: ?>
<li><a href="<?= url::site("user/{$user->id}?continue=" . url::current(true))?>"
+ title="<?= _("Edit Your Profile") ?>"
id="gUserProfileLink"><?= _("Modify Profile") ?></a></li>
<li><a href="<?= url::site("logout?continue=" . url::current(true)) ?>"
id="gLogoutLink"><?= _("Logout") ?></a></li>