Code examples

Use semantic HTML

  • This semantic HTML contains all accessibility features by default.
  • Placing the show password checkbox ahead of the password input increases discoverability for screen reader users.
    • CSS pseudo elements are used in the checkbox label to express its state on focus of the password input.
<form class="password-container">
  <label for="password">
    Password
    <span class="helper" aria-hidden="true">
      Required
    </span>
  </label>
  <div id="password-toggle" class="password-toggle">
    <input type="checkbox" id="show-password">
    <label for="show-password">
      Show Password
    </label>
  </div>
  <input type="password"
         id="password"
         aria-describedby="password-toggle password-hint"
         aria-required="true"
         required>
  <div id="password-hint" class="hint">
    Use any length of characters including emojis.
  </div>
</form>
Use any length of characters including emojis.

Developer notes

Name

  • Include for="input-id in each <label> label to associate it with the input
  • Use aria-label="Input name" as a last resort if a <label> can’t be used

Role

  • Identifies as some kind of secure input

State

  • The show password checkbox must indicate its state on focus

Group

  • Include for="input-id in each <label> label to associate it with the input
  • Use <fieldset> and <legend> to name a group of inputs.

Focus

  • Focus must be visible