Addresses #1021 mostly by adding label tags, generating unique element ids as needed. In the process, moved the label text that gets set in the ___ContentTypeView.js files to the respective handlebar templates; the text was static as far as I could tell. There are additional minor 508 improvements that can be made with the tables (scope tags, header attributes)
12 lines
681 B
Handlebars
12 lines
681 B
Handlebars
<div class='auth_button' id='basic_auth_button'><img class='auth_icon' src='images/password.jpeg'></div>
|
|
<div class='auth_container' id='basic_auth_container'>
|
|
<div class='key_input_container'>
|
|
<div class="auth_label"><label for="input_username">Username</label></div>
|
|
<input placeholder="username" class="auth_input" id="input_username" name="username" type="text"/>
|
|
<div class="auth_label"><label for="password">Password</label></div>
|
|
<input placeholder="password" class="auth_input" id="input_password" name="password" type="password"/>
|
|
<div class='auth_submit'><a class='auth_submit_button' id="apply_basic_auth" href="#">apply</a></div>
|
|
</div>
|
|
</div>
|
|
|