diff options
author | PeterTheOne <petertheone@gmail.com> | 2016-01-29 00:09:17 (GMT) |
---|---|---|
committer | PeterTheOne <petertheone@gmail.com> | 2016-01-29 00:09:17 (GMT) |
commit | e0ad0c1481387e73b1d2b00c0c35d7ef85db2dff (patch) | |
tree | 2eadd8af2046166e42caf7bee97459da3dd97a90 /www/index.html | |
parent | 1ef5a5a1aac0e562c0b3b81c0cb7eb5997b02bd5 (diff) |
jingles: use Rivendell.Cart and Cut classes with Views, etc.
validate html, move rivendell.js init to apps.js, cleanup importer,
add update event to fetch functions instead of success callback.
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> |