[aur-dev] [PATCH] xhtml validation fixes for login_form.php

Michael Klier chi at chimeric.de
Thu Jun 5 17:34:26 EDT 2008


---
 web/template/login_form.php |   45 +++++++++++++++++++-----------------------
 1 files changed, 20 insertions(+), 25 deletions(-)

diff --git a/web/template/login_form.php b/web/template/login_form.php
index 7fd40fb..b2ed066 100644
--- a/web/template/login_form.php
+++ b/web/template/login_form.php
@@ -1,28 +1,23 @@
 <span id="login_bar">
-<?php
-if (isset($_COOKIE["AURSID"])) {
-	print __("Logged-in as: %h%s%h",
-		array("<b>", username_from_sid($_COOKIE["AURSID"]), "</b>"));
-}
-else {
-	if ($login_error) {
-		print "<span class='error'>" . $login_error . "</span><br />\n";
-	} ?>
-        <form method='post'>
-         <?php print __("Username:"); ?>
-	<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);
-			 } ?>'>
-         <?php print __("Password:"); ?>
-	<input type='password' name='passwd' size='30'
-		maxlength="<?php print PASSWD_MAX_LEN; ?>">
-	<input type='submit' class='button'
-		 value='<?php  print __("Login"); ?>'>
-</form>
-<?php } ?>
+  <?php
+  if (isset($_COOKIE["AURSID"])) {
+    print __("Logged-in as: %h%s%h", array("<b>", username_from_sid($_COOKIE["AURSID"]), "</b>"));
+  }
+  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="submit" class="button" value="<?php  print __("Login"); ?>" />
+  </form>
+  <?php } ?>
 </span>
 
-
-- 
1.4.4.4


-- 
Michael Klier

www:    http://www.chimeric.de
jabber: chi at jabber.shipdown.de
key:    http://downloads.chimeric.de/chi.asc
key-id: 0x8308F551
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: Digital signature
URL: <http://archlinux.org/pipermail/aur-dev/attachments/20080605/e1c4e813/attachment.pgp>


More information about the aur-dev mailing list