diff options
| author | Patrick H. Lauke <[email protected]> | 2014-10-30 16:45:33 +0000 |
|---|---|---|
| committer | Heinrich Fenkart <[email protected]> | 2014-11-11 07:46:14 +0100 |
| commit | bb89657bcb53a60d579d8fd9bbea56dde05dad8c (patch) | |
| tree | 1be2eb0da1b12c4002cec272c9905e1cc23256fd /docs/examples/signin | |
| parent | 99919c036496d72030a965953f0e2d2d760d638c (diff) | |
| download | bootstrap-bb89657bcb53a60d579d8fd9bbea56dde05dad8c.tar.xz bootstrap-bb89657bcb53a60d579d8fd9bbea56dde05dad8c.zip | |
Assorted accessibility (and some consistency) fixes for documentation
Closes #14951 by merging it.
Diffstat (limited to 'docs/examples/signin')
| -rw-r--r-- | docs/examples/signin/index.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/examples/signin/index.html b/docs/examples/signin/index.html index f759c2fb8..2aa524e2d 100644 --- a/docs/examples/signin/index.html +++ b/docs/examples/signin/index.html @@ -33,8 +33,10 @@ <form class="form-signin" role="form"> <h2 class="form-signin-heading">Please sign in</h2> - <input type="email" class="form-control" placeholder="Email address" required autofocus> - <input type="password" class="form-control" placeholder="Password" required> + <label for="inputEmail" class="sr-only">Email address</label> + <input type="email" id="inputEmail" class="form-control" placeholder="Email address" required autofocus> + <label for="inputPassword" class="sr-only">Email address</label> + <input type="password" id="inputPassword" class="form-control" placeholder="Password" required> <div class="checkbox"> <label> <input type="checkbox" value="remember-me"> Remember me |
