diff options
author | Karlis Lauva <skazhy@gmail.com> | 2011-05-05 09:19:59 +0300 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2011-05-09 10:54:36 +0200 |
commit | d38f3460e55ad4e8486c63902f3b581684d6f188 (patch) | |
tree | 77fd24e3e0cc1dc730bda6e8365567aea5b85cbc /web/template/login_form.php | |
parent | cffdb0fe0de9dd5528dedd23046ec70411668f1a (diff) |
Added label tags for login form fields.
Lukas: Use tabs for indentation instead of spaces.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/template/login_form.php')
-rw-r--r-- | web/template/login_form.php | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/web/template/login_form.php b/web/template/login_form.php index ab00071..ca81e0e 100644 --- a/web/template/login_form.php +++ b/web/template/login_form.php @@ -13,14 +13,15 @@ else { ?> <form method="post" action="<?php echo $_SERVER['REQUEST_URI'] ?>"> <div> - <?php print __('Username') . ':'; ?> - <input type="text" name="user" size="30" maxlength="<?php print USERNAME_MAX_LEN; ?>" value="<?php + <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); } ?>" /> - <?php print __('Password') . ':'; ?> - <input type="password" name="passwd" size="30" maxlength="<?php print PASSWD_MAX_LEN; ?>" /> - <input type="checkbox" name="remember_me" /><?php print __("Remember me"); ?> + <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> |