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

Side by Side Diff: chrome/browser/resources/chromeos/login/screen_error_message.html

Issue 209143002: Added shortcut for NW config screen in kiosk. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 months 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 id="error-message" class="step hidden show-offline-error"> 1 <div id="error-message" class="step hidden show-offline-error">
2 <div class="step-contents"> 2 <div class="step-contents">
3 <div class="error-header"> 3 <div class="error-header">
4 <img alt class="error-icon" src="chrome://theme/IDR_ERROR_NETWORK_OFFLINE" > 4 <img alt class="error-icon" src="chrome://theme/IDR_ERROR_NETWORK_OFFLINE" >
5 <div id="captive-portal-title" i18n-content="captivePortalTitle" 5 <div id="captive-portal-title" i18n-content="captivePortalTitle"
6 class="error-title 6 class="error-title
7 show-with-error-state-portal 7 show-with-error-state-portal
8 show-with-error-state-offline"></div> 8 show-with-error-state-offline"></div>
9 <div id="login-error-title" i18n-content="loginErrorTitle" 9 <div id="login-error-title" i18n-content="loginErrorTitle"
10 class="error-title 10 class="error-title
11 show-with-error-state-proxy 11 show-with-error-state-proxy
12 show-with-error-state-auth-ext-timeout 12 show-with-error-state-auth-ext-timeout
13 show-with-ui-state-local-state-error"> 13 show-with-ui-state-local-state-error">
14 </div> 14 </div>
15 <div id="kiosk-online-title" i18n-content="kioskOnlineTitle"
16 class="error-title
17 show-with-error-state-kiosk-online"></div>
15 </div> 18 </div>
16 <div class="error-body"> 19 <div class="error-body">
20 <div id="kiosk-online-message-body"
21 class="error-message-paragraph
22 show-with-error-state-kiosk-online">
23 <span i18n-content="kioskOnlineMessageBody"
24 class="show-with-error-state-kiosk-online"></span>
25 </div>
17 <div id="offline-message-body" 26 <div id="offline-message-body"
18 class="error-message-paragraph 27 class="error-message-paragraph
19 show-with-error-state-offline 28 show-with-error-state-offline
20 show-with-error-state-auth-ext-timeout"> 29 show-with-error-state-auth-ext-timeout">
21 <span id="update-offline-message-text" 30 <span id="update-offline-message-text"
22 i18n-content="updateOfflineMessageBody" 31 i18n-content="updateOfflineMessageBody"
23 class="show-with-ui-state-update"></span> 32 class="show-with-ui-state-update"></span>
24 <span id="signin-offline-message-text" 33 <span id="signin-offline-message-text"
25 i18n-content="signinOfflineMessageBody" 34 i18n-content="signinOfflineMessageBody"
26 class="show-with-ui-state-signin 35 class="show-with-ui-state-signin
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 show-with-ui-state-signin 77 show-with-ui-state-signin
69 show-with-ui-state-locally-managed 78 show-with-ui-state-locally-managed
70 show-with-ui-state-kiosk-mode 79 show-with-ui-state-kiosk-mode
71 show-with-ui-state-auto-enrollment-error"> 80 show-with-ui-state-auto-enrollment-error">
72 <div id="offline-network-control" class="error-message-paragraph"> 81 <div id="offline-network-control" class="error-message-paragraph">
73 <label for="offline-networks-list-dropdown" 82 <label for="offline-networks-list-dropdown"
74 i18n-content="selectNetwork" 83 i18n-content="selectNetwork"
75 class="offline-network-list-label 84 class="offline-network-list-label
76 show-with-error-state-offline 85 show-with-error-state-offline
77 show-with-error-state-proxy 86 show-with-error-state-proxy
78 show-with-error-state-auth-timeout"></label> 87 show-with-error-state-auth-timeout
88 show-with-error-state-kiosk-online"></label>
79 <label for="offline-networks-list-dropdown" 89 <label for="offline-networks-list-dropdown"
80 i18n-content="selectAnotherNetwork" 90 i18n-content="selectAnotherNetwork"
81 class="offline-network-list-label 91 class="offline-network-list-label
82 show-with-error-state-portal"> 92 show-with-error-state-portal">
83 </label> 93 </label>
84 <div class="menu-area"> 94 <div class="menu-area">
85 <div id="offline-networks-list" class="menu-control"></div> 95 <div id="offline-networks-list" class="menu-control"></div>
86 </div> 96 </div>
87 </div> 97 </div>
88 </div> 98 </div>
(...skipping 21 matching lines...) Expand all
110 <div id="error-offline-login" 120 <div id="error-offline-login"
111 class="error-message-paragraph offline-login"></div> 121 class="error-message-paragraph offline-login"></div>
112 <div id="connecting-indicator" 122 <div id="connecting-indicator"
113 class="connecting-indicator error-message-paragraph"></div> 123 class="connecting-indicator error-message-paragraph"></div>
114 </div> 124 </div>
115 </div> 125 </div>
116 <div class="error-controls"> 126 <div class="error-controls">
117 <div id="error-message-controls" class="step-controls"></div> 127 <div id="error-message-controls" class="step-controls"></div>
118 </div> 128 </div>
119 </div> 129 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698