summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarlis Lauva <skazhy@gmail.com>2011-05-05 08:19:59 +0200
committerLukas Fleischer <archlinux@cryptocrack.de>2011-05-09 10:54:36 +0200
commitd38f3460e55ad4e8486c63902f3b581684d6f188 (patch)
tree77fd24e3e0cc1dc730bda6e8365567aea5b85cbc
parentcffdb0fe0de9dd5528dedd23046ec70411668f1a (diff)
downloadaur-d38f3460e55ad4e8486c63902f3b581684d6f188.tar.gz
aur-d38f3460e55ad4e8486c63902f3b581684d6f188.tar.xz
Added label tags for login form fields.
Lukas: Use tabs for indentation instead of spaces. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
-rw-r--r--web/template/login_form.php11
1 files changed, 6 insertions, 5 deletions
diff --git a/web/template/login_form.php b/web/template/login_form.php
index ab00071c..ca81e0e7 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>