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> | |
20 <tr> | 5 <tr> |
21 <td class="option-name"><label><input id="allowBwsiCheck" | 6 <td class="option-name"><label><input id="allowBwsiCheck" |
22 pref="cros.accounts.allowBWSI" type="checkbox"><span | 7 pref="cros.accounts.allowBWSI" type="checkbox"><span |
23 i18n-content="allow_BWSI"></span></label></td> | 8 i18n-content="allow_BWSI"></span></label></td> |
24 </tr> | 9 </tr> |
25 <tr> | 10 <tr> |
26 <td class="option-name"><label><input id="allowGuestCheck" | 11 <td class="option-name"><label><input id="allowGuestCheck" |
27 pref="cros.accounts.allowGuest" type="checkbox"><span | 12 pref="cros.accounts.allowGuest" type="checkbox"><span |
28 i18n-content="allow_guest"></span></label></td> | 13 i18n-content="allow_guest"></span></label></td> |
29 </tr> | 14 </tr> |
30 <tr> | 15 <tr> |
31 <td class="option-name"><label><input id="showUserNamesCheck" | 16 <td class="option-name" i18n-content="user_list_title"></td> |
32 pref="cros.accounts.showUserNamesOnSignIn" type="checkbox"><span | |
33 i18n-content="show_user_on_signin"></span></label></td> | |
34 </tr> | 17 </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> |
35 </table> | 27 </table> |
36 </div> | 28 </div> |
37 </div> | 29 </div> |
OLD | NEW |