summaryrefslogtreecommitdiffstats
path: root/web/template/login_form.php
blob: e1192c0669120b890bda1ccd52a28c0a45ac0dd8 (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
31
32
33
<?php
include_once('acctfuncs.inc');
$login = try_login();
$login_error = $login['error'];
?>

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