OLD | NEW |
1 <div class="page hidden" id="accountsPage"> | 1 <div class="page hidden" id="accountsPage"> |
2 <h1 i18n-content="accountsPage"></h1> | 2 <h1 i18n-content="accountsPage"></h1> |
3 <div class="option"> | 3 <div class="option"> |
4 <table class="option-control-table"> | 4 <table class="option-control-table"> |
| 5 <tr><td> |
| 6 <table class="user-list-table"> |
| 7 <tr><td> |
| 8 <list id="userList"></list> |
| 9 </td></tr> |
| 10 <tr><td class="user-name-edit-row"> |
| 11 <label><span i18n-content="add_users"></span><br> |
| 12 <input id="userNameEdit" type="text" |
| 13 i18n-values="placeholder:username_edit_hint"> |
| 14 </span> |
| 15 </label> |
| 16 </td></tr> |
| 17 </table> |
| 18 </td></tr> |
| 19 <tr><td> </td></tr> |
5 <tr> | 20 <tr> |
6 <td class="option-name"><label><input id="allowBwsiCheck" | 21 <td class="option-name"><label><input id="allowBwsiCheck" |
7 pref="cros.accounts.allowBWSI" type="checkbox"><span | 22 pref="cros.accounts.allowBWSI" type="checkbox"><span |
8 i18n-content="allow_BWSI"></span></label></td> | 23 i18n-content="allow_BWSI"></span></label></td> |
9 </tr> | 24 </tr> |
10 <tr> | 25 <tr> |
11 <td class="option-name"><label><input id="allowGuestCheck" | 26 <td class="option-name"><label><input id="allowGuestCheck" |
12 pref="cros.accounts.allowGuest" type="checkbox"><span | 27 pref="cros.accounts.allowGuest" type="checkbox"><span |
13 i18n-content="allow_guest"></span></label></td> | 28 i18n-content="allow_guest"></span></label></td> |
14 </tr> | 29 </tr> |
15 <tr> | 30 <tr> |
16 <td class="option-name" i18n-content="user_list_title"></td> | 31 <td class="option-name"><label><input id="showUserNamesCheck" |
| 32 pref="cros.accounts.showUserNamesOnSignIn" type="checkbox"><span |
| 33 i18n-content="show_user_on_signin"></span></label></td> |
17 </tr> | 34 </tr> |
18 <tr><td class="option-name"> | |
19 <list id="userList"></list> | |
20 </td></tr> | |
21 <tr><td class="option-name"> | |
22 <button id="addUserButton" | |
23 i18n-content="add_user"></button> | |
24 <button id="removeUserButton" disabled | |
25 i18n-content="remove_user"></button> | |
26 </td></tr> | |
27 </table> | 35 </table> |
28 </div> | 36 </div> |
29 </div> | 37 </div> |
OLD | NEW |