All input
elements with a type of "password"should have a corresponding
label
element. Screen readers often enter a "form mode" where
only label text is read aloud to the user, and missing labels can make a form
unusable in these cases.
Enter your password: <input type="password" name="pass">
<label for="pass">Enter your password:</label> <input type="password"
name="pass" id="pass">