Index: post-template.php
===================================================================
--- post-template.php	(revision 18797)
+++ post-template.php	(working copy)
@@ -1214,13 +1214,13 @@
  */
 function get_the_password_form() {
 	global $post;
-	$label = 'pwbox-'.(empty($post->ID) ? rand() : $post->ID);
-	$output = '<form action="' . get_option('siteurl') . '/wp-pass.php" method="post">
-	<p>' . __("This post is password protected. To view it please enter your password below:") . '</p>
-	<p><label for="' . $label . '">' . __("Password:") . ' <input name="post_password" id="' . $label . '" type="password" size="20" /></label> <input type="submit" name="Submit" value="' . esc_attr__("Submit") . '" /></p>
+	$label = 'pwbox-' . ( empty( $post->ID ) ? rand() : $post->ID );
+	$output = '<form action="' . get_option( 'siteurl' ) . '/wp-pass.php" class="post-password-form" method="post">
+	<p>' . __( 'This post is password protected. To view it please enter your password below:' ) . '</p>
+	<p><label>' . __( 'Password:' ) . ' <input name="post_password" type="password" size="20" /></label> <input type="submit" name="Submit" value="' . esc_attr__( 'Submit' ) . '" /></p>
 	</form>
 	';
-	return apply_filters('the_password_form', $output);
+	return apply_filters( 'the_password_form', $output );
 }
 
 /**
