summaryrefslogtreecommitdiffstats
path: root/web/template/login_form.php
blob: b6d26ebccd62f6176900527ebea57472eadde10b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<div id="login_bar" class="pgbox">
<?php
if (isset($_COOKIE["AURSID"])) {
	printf(_("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>