diff options
author | Loui Chang <louipc.ist@gmail.com> | 2009-11-23 13:58:49 +0100 |
---|---|---|
committer | Loui Chang <louipc.ist@gmail.com> | 2009-11-23 14:00:33 +0100 |
commit | e936dc9770b25e952c597415816ef5e17d350206 (patch) | |
tree | f9bcb08642df3fe346875690fd52afaa3cc5d1fd /web/template | |
parent | 6ef9d27a5b1aa9490fb585f33e5999b3480c45af (diff) | |
download | aur-e936dc9770b25e952c597415816ef5e17d350206.tar.gz aur-e936dc9770b25e952c597415816ef5e17d350206.tar.xz |
login_form: Change 'Forgot Password' to translatable string.
Also change layout and styling.
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
Diffstat (limited to 'web/template')
-rw-r--r-- | web/template/login_form.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/template/login_form.php b/web/template/login_form.php index 5cf708de..02d69775 100644 --- a/web/template/login_form.php +++ b/web/template/login_form.php @@ -1,4 +1,4 @@ -<div id="login_bar"> +<div id="login_bar" class="pgbox"> <?php if (isset($_COOKIE["AURSID"])) { print __("Logged-in as: %s", '<b>' . username_from_sid($_COOKIE["AURSID"]) . '</b>'); @@ -23,8 +23,8 @@ else { <input type="password" name="passwd" size="30" maxlength="<?php print PASSWD_MAX_LEN; ?>" /> <input type="checkbox" name="remember_me" /><?php print __("Remember me"); ?> <input type="submit" class="button" value="<?php print __("Login"); ?>" /> + <a href="passreset.php">[<?php echo __('Forgot Password') ?>]</a> </div> </form> -<a href="passreset.php">[Forgot Password]</a> <?php } ?> </div> |