blob: 18c097078a01c33aa1951462e67a9fee61131839 (
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
<div id="manage-profile-overlay" class="page" hidden>
<div class="close-button"></div>
<!-- Dialog for managing profiles. -->
<div id="manage-profile-overlay-manage" hidden>
<h1 i18n-content="manageProfile"></h1>
<div id="manage-profile-content" class="content-area">
<div id="manage-profile-icon-label"
i18n-content="manageProfilesIconLabel">
</div>
<grid id="manage-profile-icon-grid"></grid>
<div id="manage-profile-name-input-container">
<label>
<span id="manage-profile-name-label" for="manage-profile-name"
i18n-content="manageProfilesNameLabel">
</span>
<input id="manage-profile-name" type="text" required>
</label>
</div>
<div id="manage-profile-error-bubble" hidden></div>
</div>
<div class="action-area">
<div class="action-area-shortcut-container">
<button id="remove-shortcut-button"
i18n-content="removeProfileShortcutButton" hidden>
</button>
<button id="add-shortcut-button"
i18n-content="createProfileShortcutButton" hidden>
</button>
</div>
<div class="button-strip">
<button id="manage-profile-cancel" i18n-content="cancel"></button>
<button id="manage-profile-ok" i18n-content="ok"
class="default-button"></button>
</div>
</div>
</div>
<!-- Dialog for deleting profiles. -->
<div id="manage-profile-overlay-delete" hidden>
<h1 i18n-content="deleteProfileTitle"></h1>
<div class="content-area">
<div id="delete-profile-message">
<img id="delete-profile-icon" class="profile-icon">
<div id="delete-profile-text"></div>
</div>
<div id="delete-supervised-profile-addendum"
i18n-values=".innerHTML:deleteSupervisedProfileAddendum" hidden>
</div>
</div>
<div class="action-area button-strip">
<button id="delete-profile-cancel" i18n-content="cancel"></button>
<button id="delete-profile-ok" class="default-button"
i18n-content="deleteProfileOK"></button>
</div>
</div>
<!-- Dialog for disconnecting enterprise managed profiles. -->
<div id="manage-profile-overlay-disconnect-managed" hidden>
<h1 i18n-content="disconnectManagedProfileTitle"></h1>
<div class="content-area"
id="disconnect-managed-profile-domain-information"
i18n-values=".innerHTML:disconnectManagedProfileDomainInformation">
</div>
<div class="content-area">
<div id="disconnect-managed-profile-message">
<div id="disconnect-managed-profile-text"
i18n-values=".innerHTML:disconnectManagedProfileText">
</div>
</div>
</div>
<div class="action-area">
<div class="button-strip">
<button id="disconnect-managed-profile-ok"
i18n-content="disconnectManagedProfileOK"></button>
<button id="disconnect-managed-profile-cancel" class="default-button"
i18n-content="cancel"></button>
</div>
</div>
</div>
<!-- Dialog for creating profiles. -->
<div id="manage-profile-overlay-create" hidden>
<h1 i18n-content="createProfileTitle"></h1>
<div id="create-profile-content" class="content-area">
<div id="create-profile-instructions"></div>
<grid id="create-profile-icon-grid"></grid>
<div id="create-profile-name-input-container">
<label>
<span id="create-profile-name-label" for="create-profile-name"
i18n-content="manageProfilesNameLabel">
</span>
<input id="create-profile-name" type="text" required>
</label>
</div>
</div>
<div id="create-profile-supervised-content-area" class="content-area">
<div id="create-shortcut-container" class="checkbox" hidden>
<label>
<input id="create-shortcut" type="checkbox">
<span for="create-shortcut"
i18n-content="createProfileShortcutCheckbox">
</span>
</label>
</div>
<div id="create-profile-supervised-container" class="checkbox">
<label>
<input id="create-profile-supervised" type="checkbox">
<span id="create-profile-supervised-signed-in">
<span id="create-profile-supervised-signed-in-label"></span>
<span id="create-profile-supervised-account-details-out-of-date-label"
hidden>
</span>
<button id="create-profile-supervised-signed-in-learn-more-link"
class="link-button" i18n-content="learnMore">
</button>
<button id="create-profile-supervised-sign-in-again-link"
class="link-button"
i18n-content="manageProfilesSupervisedSignInAgainLink" hidden>
</button>
</span>
<span id="create-profile-supervised-not-signed-in" hidden>
<span id="create-profile-supervised-not-signed-in-label"
i18n-content="manageProfilesSupervisedNotSignedInLabel">
</span>
<button id="create-profile-supervised-not-signed-in-link"
class="link-button"
i18n-content="manageProfilesSupervisedNotSignedInLink">
</button>
</span>
</label>
<span id="create-profile-supervised-indicator"
class="bubble-button controlled-setting-indicator">
</span>
</div>
<div id="create-profile-error-bubble" hidden></div>
</div>
<div class="action-area">
<div id="create-profile-throbber" class="throbber"></div>
<button id="import-existing-supervised-user-link" class="link-button"
i18n-content="importExistingSupervisedUserLink" hidden>
</button>
<div class="button-strip">
<button id="create-profile-cancel" i18n-content="cancel"></button>
<button id="create-profile-ok" i18n-content="createProfileConfirm"
class="default-button">
</button>
</div>
</div>
</div>
</div>
|