• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<div id="manage-profile-overlay" class="page" hidden>
2  <div class="close-button"></div>
3  <!-- Dialog for managing profiles. -->
4  <div id="manage-profile-overlay-manage" hidden>
5    <h1 i18n-content="manageProfile"></h1>
6    <div id="manage-profile-content" class="content-area">
7      <div id="manage-profile-icon-label"
8          i18n-content="manageProfilesIconLabel">
9      </div>
10      <grid id="manage-profile-icon-grid"></grid>
11      <div id="manage-profile-name-input-container">
12        <label>
13          <span i18n-content="manageProfilesNameLabel"></span>
14          <input id="manage-profile-name" type="text" pattern=".*\S.*" required>
15        </label>
16      </div>
17      <div id="manage-profile-error-bubble" hidden></div>
18    </div>
19    <div class="action-area">
20      <div class="action-area-shortcut-container">
21        <button id="remove-shortcut-button"
22            i18n-content="removeProfileShortcutButton" hidden>
23        </button>
24        <button id="add-shortcut-button"
25            i18n-content="createProfileShortcutButton" hidden>
26        </button>
27      </div>
28      <div class="button-strip">
29        <button id="manage-profile-cancel" i18n-content="cancel"></button>
30        <button id="manage-profile-ok" i18n-content="manageProfilesConfirm"
31            class="default-button"></button>
32      </div>
33    </div>
34  </div>
35  <!-- Dialog for deleting profiles. -->
36  <div id="manage-profile-overlay-delete" hidden>
37    <h1 i18n-content="deleteProfileTitle"></h1>
38    <div class="content-area">
39      <div id="delete-profile-message">
40        <img id="delete-profile-icon" class="profile-icon">
41        <div id="delete-profile-text"></div>
42      </div>
43      <div id="delete-supervised-profile-addendum"
44          i18n-values=".innerHTML:deleteSupervisedProfileAddendum" hidden>
45      </div>
46    </div>
47    <div class="action-area button-strip">
48      <button id="delete-profile-cancel" i18n-content="cancel"></button>
49      <button id="delete-profile-ok" class="default-button"
50          i18n-content="deleteProfileOK"></button>
51    </div>
52  </div>
53  <!-- Dialog for disconnecting enterprise managed profiles. -->
54  <div id="manage-profile-overlay-disconnect-managed" hidden>
55    <h1 i18n-content="disconnectManagedProfileTitle"></h1>
56    <div class="content-area"
57        id="disconnect-managed-profile-domain-information"
58        i18n-values=".innerHTML:disconnectManagedProfileDomainInformation">
59    </div>
60    <div class="content-area">
61      <div id="disconnect-managed-profile-message">
62        <div id="disconnect-managed-profile-text"
63            i18n-values=".innerHTML:disconnectManagedProfileText">
64        </div>
65      </div>
66    </div>
67    <div class="action-area">
68      <div class="button-strip">
69        <button id="disconnect-managed-profile-ok"
70            i18n-content="disconnectManagedProfileOK"></button>
71        <button id="disconnect-managed-profile-cancel" class="default-button"
72            i18n-content="cancel"></button>
73      </div>
74    </div>
75  </div>
76  <!-- Dialog for creating profiles. -->
77  <div id="manage-profile-overlay-create" hidden>
78    <h1 i18n-content="createProfileTitle"></h1>
79    <div id="create-profile-content" class="content-area">
80      <div id="create-profile-instructions"></div>
81      <grid id="create-profile-icon-grid"></grid>
82      <div id="create-profile-name-input-container">
83        <label>
84          <span id="create-profile-name-label"
85              i18n-content="manageProfilesNameLabel">
86          </span>
87          <input id="create-profile-name" type="text" pattern=".*\S.*" required>
88        </label>
89      </div>
90    </div>
91    <div id="create-profile-supervised-content-area" class="content-area">
92      <div id="create-shortcut-container" class="checkbox" hidden>
93        <label>
94          <input id="create-shortcut" type="checkbox">
95          <span i18n-content="createProfileShortcutCheckbox"></span>
96        </label>
97      </div>
98      <div id="create-profile-supervised-container" class="checkbox">
99        <label>
100          <input id="create-profile-supervised" type="checkbox">
101          <span id="create-profile-supervised-signed-in">
102            <span id="create-profile-supervised-signed-in-label"></span>
103            <span id="create-profile-supervised-account-details-out-of-date-label"
104                hidden>
105            </span>
106            <button id="create-profile-supervised-signed-in-learn-more-link"
107                class="link-button" i18n-content="learnMore">
108            </button>
109            <button id="create-profile-supervised-sign-in-again-link"
110                class="link-button"
111                i18n-content="manageProfilesSupervisedSignInAgainLink" hidden>
112            </button>
113          </span>
114          <span id="create-profile-supervised-not-signed-in"
115              i18n-values=".innerHTML:manageProfilesSupervisedNotSignedIn"
116              hidden>
117          </span>
118        </label>
119        <span id="create-profile-supervised-indicator"
120            class="bubble-button controlled-setting-indicator">
121        </span>
122      </div>
123      <div id="create-profile-error-bubble" hidden></div>
124    </div>
125    <div class="action-area">
126      <div id="create-profile-throbber" class="throbber"></div>
127      <button id="import-existing-supervised-user-link" class="link-button"
128          i18n-content="importExistingSupervisedUserLink" hidden>
129      </button>
130      <div class="button-strip">
131        <button id="create-profile-cancel" i18n-content="cancel"></button>
132        <button id="create-profile-ok" i18n-content="createProfileConfirm"
133            class="default-button">
134        </button>
135      </div>
136    </div>
137  </div>
138</div>
139