diff options
Diffstat (limited to 'www/index.html')
-rw-r--r-- | www/index.html | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/www/index.html b/www/index.html index 77bf69b..f2fce51 100644 --- a/www/index.html +++ b/www/index.html @@ -40,7 +40,7 @@ <div id="loginbox"> <form id="loginform" class="form-auth" role="form"> - <img src="/img/helsinki.png" /> + <img src="/img/helsinki.png" alt="radio helsinki logo" /> <h1 class="form-auth-heading">Radio Helsinki - Import</h1> <input id="username" type="text" class="form-control" placeholder="Benutzername" required autofocus> <input id="password" type="password" class="form-control" placeholder="Passwort" required> @@ -120,7 +120,10 @@ <div class="row-fluid"> <div class="span10"> <form class="well form-inline"> - <label class="control-label" for="show-selector"><h3>Sendung auswählen</h3></label> + <!-- todo: fix html error: h3 is not allowed in label --> + <label class="control-label" for="show-selector"> + <h3>Sendung auswählen</h3> + </label> <select id="show-selector" class="main-selector" onchange="shows_showSelected()"> </select> </form> @@ -188,7 +191,10 @@ <div class="alertbox"></div> <div class="row-fluid"> <form class="well form-inline"> - <label class="control-label" for="musicpool-selector"><h3>Musikpool auswählen</h3></label> + <!-- todo: fix html error: h3 is not allowed in label --> + <label class="control-label" for="musicpool-selector"> + <h3>Musikpool auswählen</h3> + </label> <select id="musicpool-selector" class="main-selector"> </select> </form> |