mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Lukas: Use tabs for indentation instead of spaces. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
30 lines
1.1 KiB
PHP
30 lines
1.1 KiB
PHP
<div id="login_bar" class="pgbox">
|
|
<?php
|
|
if (isset($_COOKIE["AURSID"])) {
|
|
print __("Logged-in as: %s", '<b>' . username_from_sid($_COOKIE["AURSID"]) . '</b>');
|
|
?>
|
|
<a href="logout.php">[<?php print __("Logout"); ?>]</a>
|
|
<?php
|
|
}
|
|
else {
|
|
if ($login_error) {
|
|
print "<span class='error'>" . $login_error . "</span><br />\n";
|
|
}
|
|
?>
|
|
<form method="post" action="<?php echo $_SERVER['REQUEST_URI'] ?>">
|
|
<div>
|
|
<label for="user"><?php print __('Username') . ':'; ?></label>
|
|
<input type="text" name="user" id="user" size="30" maxlength="<?php print USERNAME_MAX_LEN; ?>" value="<?php
|
|
if (isset($_POST['user'])) {
|
|
print htmlspecialchars($_POST['user'], ENT_QUOTES);
|
|
} ?>" />
|
|
<label for="passwd"><?php print __('Password') . ':'; ?></label>
|
|
<input type="password" name="passwd" id="passwd" size="30" maxlength="<?php print PASSWD_MAX_LEN; ?>" />
|
|
<input type="checkbox" name="remember_me" id="remember_me" />
|
|
<label for="remember_me"><?php print __("Remember me"); ?></label>
|
|
<input type="submit" class="button" value="<?php print __("Login"); ?>" />
|
|
<a href="passreset.php">[<?php echo __('Forgot Password') ?>]</a>
|
|
</div>
|
|
</form>
|
|
<?php } ?>
|
|
</div>
|