diff options
author | Loui Chang <louipc.ist@gmail.com> | 2008-02-07 01:16:21 +0100 |
---|---|---|
committer | Simo Leone <simo@archlinux.org> | 2008-03-23 09:04:16 +0100 |
commit | a5a8895f497e4c274870e4519c5526542c91dc27 (patch) | |
tree | cbe459435b01469040f8473f04ef0c616b911ab0 /web/template/login_form.php | |
parent | 541ea8aaccfcc4f2ee149288bf07645a0782b24b (diff) | |
download | aur-a5a8895f497e4c274870e4519c5526542c91dc27.tar.gz aur-a5a8895f497e4c274870e4519c5526542c91dc27.tar.xz |
Put login into its own function.
Utilise login form template.
Also cleaned up a couple notices.
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
Signed-off-by: Simo Leone <simo@archlinux.org>
Diffstat (limited to 'web/template/login_form.php')
-rw-r--r-- | web/template/login_form.php | 53 |
1 files changed, 24 insertions, 29 deletions
diff --git a/web/template/login_form.php b/web/template/login_form.php index 89f11c1e..7fd40fb0 100644 --- a/web/template/login_form.php +++ b/web/template/login_form.php @@ -1,33 +1,28 @@ +<span id="login_bar"> <?php -# Now present the user login stuff -if (!isset($_COOKIE["AURSID"])): - - # the user is not logged in, give them login widgets - # - if (!empty($login['error'])) { - print '<div class="error">' . $login['error'] - . '</div>'; - } -?> - - <form action="<?php print $_SERVER['PHP_SELF']; ?>" method="post"> - <label class="lbox"><?php print __("Username"); ?><br /> - <input type="text" name="user" size="30" - maxlength="<?php print USERNAME_MAX_LEN;?>"></label> - - <label class="lbox"><?php print __("Password"); ?><br /> - <input type="password" name="passwd" size="30" - maxlength="<?php print PASSWD_MAX_LEN; ?>"></label> - <br /> - <input type="submit" class="button" - value="<?php print __("Login"); ?>"> - </form> - -<?php -else: +if (isset($_COOKIE["AURSID"])) { print __("Logged-in as: %h%s%h", array("<b>", username_from_sid($_COOKIE["AURSID"]), "</b>")); -endif; +} +else { + if ($login_error) { + print "<span class='error'>" . $login_error . "</span><br />\n"; + } ?> + <form method='post'> + <?php print __("Username:"); ?> + <input type='text' name='user' size='30' + maxlength="<?php print USERNAME_MAX_LEN; ?>" + value='<?php + if (isset($_POST['user'])) { + print htmlspecialchars($_POST['user'], ENT_QUOTES); + } ?>'> + <?php print __("Password:"); ?> + <input type='password' name='passwd' size='30' + maxlength="<?php print PASSWD_MAX_LEN; ?>"> + <input type='submit' class='button' + value='<?php print __("Login"); ?>'> +</form> +<?php } ?> +</span> + -# vim: ts=2 sw=2 noet ft=php -?> |