aurweb/web/template/login_form.php
Loui Chang a5a8895f49 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>
2008-03-23 03:04:16 -05:00

28 lines
777 B
PHP

<span id="login_bar">
<?php
if (isset($_COOKIE["AURSID"])) {
print __("Logged-in as: %h%s%h",
array("<b>", username_from_sid($_COOKIE["AURSID"]), "</b>"));
}
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>