Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(331)

Side by Side Diff: chrome/browser/resources/options/chromeos_accounts_options.html

Issue 5530005: Whitelist checkbox on ChromeOS users settings page should be inverted. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 <section> 3 <section>
4 <div class="option"> 4 <div class="option">
5 <table class="option-control-table"> 5 <table class="option-control-table">
6 <tr> 6 <tr>
7 <td class="option-name"> 7 <td class="option-name">
8 <label class="checkbox"> 8 <label class="checkbox">
9 <input id="allowBwsiCheck" pref="cros.accounts.allowBWSI" 9 <input id="allowBwsiCheck" pref="cros.accounts.allowBWSI"
10 type="checkbox"> 10 type="checkbox">
11 <span i18n-content="allow_BWSI"></span> 11 <span i18n-content="allow_BWSI"></span>
12 </label> 12 </label>
13 </td> 13 </td>
14 </tr> 14 </tr>
15 <tr> 15 <tr>
16 <td class="option-name"> 16 <td class="option-name">
17 <label class="checkbox"> 17 <label class="checkbox">
18 <input id="showUserNamesCheck" 18 <input id="showUserNamesCheck"
19 pref="cros.accounts.showUserNamesOnSignIn" type="checkbox"> 19 pref="cros.accounts.showUserNamesOnSignIn" type="checkbox">
20 <span i18n-content="show_user_on_signin"></span> 20 <span i18n-content="show_user_on_signin"></span>
21 </label> 21 </label>
22 </td> 22 </td>
23 </tr> 23 </tr>
24 <tr> 24 <tr>
25 <td class="option-name"> 25 <td class="option-name">
26 <label class="checkbox"> 26 <label class="checkbox">
27 <input id="allowGuestCheck" pref="cros.accounts.allowGuest" 27 <input id="useWhitelistCheck" pref="cros.accounts.allowGuest"
28 type="checkbox"> 28 type="checkbox" inverted_pref>
29 <span i18n-content="allow_guest"></span> 29 <span i18n-content="use_whitelist"></span>
30 </label> 30 </label>
31 </td> 31 </td>
32 </tr> 32 </tr>
33 <tr><td>&nbsp;</td></tr> 33 <tr><td>&nbsp;</td></tr>
34 <tr><td> 34 <tr><td>
35 <table class="user-list-table"> 35 <table class="user-list-table">
36 <tr><td> 36 <tr><td>
37 <list id="userList"></list> 37 <list id="userList"></list>
38 </td></tr> 38 </td></tr>
39 <tr><td class="user-name-edit-row"> 39 <tr><td class="user-name-edit-row">
40 <label><span i18n-content="add_users"></span><br> 40 <label><span i18n-content="add_users"></span><br>
41 <input id="userNameEdit" type="text" 41 <input id="userNameEdit" type="text"
42 i18n-values="placeholder:username_edit_hint"> 42 i18n-values="placeholder:username_edit_hint">
43 </span> 43 </span>
44 </label> 44 </label>
45 </td></tr> 45 </td></tr>
46 </table> 46 </table>
47 </td></tr> 47 </td></tr>
48 </table> 48 </table>
49 </div> 49 </div>
50 </section> 50 </section>
51 </div> 51 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698