summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/options/chromeos/accounts_options.html
blob: 2ddc846d232feaf0b820df730ab16f3c2be5566f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<div id="accountsPage" class="page" hidden>
  <div class="close-button"></div>
  <h1 i18n-content="accountsPage"></h1>
  <div class="content-area">
    <div class="option">
      <div id="ownerOnlyWarning" hidden>
        <span i18n-content="owner_only"></span>
        <span i18n-content="ownerUserId"></span>
      </div>
      <table class="option-control-table">
      <tr>
        <td class="option-name">
          <div class="checkbox">
            <label>
              <input id="allowBwsiCheck" type="checkbox"
                     metric="Options_GuestBrowsing"
                     pref="cros.accounts.allowBWSI">
              <span i18n-content="allow_BWSI"></span>
            </label>
          </div>
        </td>
      </tr>
      <tr>
        <td class="option-name">
          <div class="checkbox">
             <label>
              <input id="allowSupervisedCheck" type="checkbox"
                     metric="Options_SupervisedUsers"
                     pref="cros.accounts.supervisedUsersEnabled">
              <span i18n-content="allow_supervised_users"></span>
            </label>
          </div>
        </td>
      </tr>
      <tr>
        <td class="option-name">
          <div class="checkbox">
            <label>
              <input id="showUserNamesCheck" type="checkbox"
                     metric="Options_ShowUserNamesOnSignin"
                     pref="cros.accounts.showUserNamesOnSignIn">
              <span i18n-content="show_user_on_signin"></span>
            </label>
          </div>
        </td>
      </tr>
      <tr>
        <td class="option-name">
          <div class="checkbox">
            <label>
              <input id="useWhitelistCheck" type="checkbox"
                     metric="Options_AllowAllUsers"
                     pref="cros.accounts.allowGuest"
                     inverted_pref>
              <span i18n-content="use_whitelist"></span>
            </label>
          </div>
        </td>
      </tr>
      <tr><td>&nbsp;</td></tr>
      <tr><td>
        <table class="user-list-table">
          <tr><td>
            <list id="userList"></list>
          </td></tr>
          <tr><td class="user-name-edit-row">
            <label><span i18n-content="add_users"></span><br>
            <input id="userNameEdit" type="text"
                i18n-values="placeholder:username_edit_hint">
            </span>
            </label>
          </td></tr>
        </table>
      </td></tr>
     </table>
    </div>
  </div>
  <div class="action-area">
    <div class="button-strip">
      <button id="accounts-options-overlay-confirm" class="default-button"
          i18n-content="done">
      </button>
    </div>
  </div>
</div>