| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2011 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <html> | 8 <html> |
| 9 <head> | 9 <head> |
| 10 <meta charset="utf-8" /> | 10 <meta charset="utf-8" /> |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 <button id="connect-button" class="big-button" | 198 <button id="connect-button" class="big-button" |
| 199 type="submit" i18n-content="CONNECT_BUTTON"></button> | 199 type="submit" i18n-content="CONNECT_BUTTON"></button> |
| 200 <button class="big-button" type="button" | 200 <button class="big-button" type="button" |
| 201 i18n-content="CANCEL" | 201 i18n-content="CANCEL" |
| 202 onclick="remoting.setMode(remoting.AppMode.HOME);"> | 202 onclick="remoting.setMode(remoting.AppMode.HOME);"> |
| 203 </button> | 203 </button> |
| 204 </form> | 204 </form> |
| 205 </div> <!-- code-entry-row --> | 205 </div> <!-- code-entry-row --> |
| 206 </div> <!-- client.unconnected --> | 206 </div> <!-- client.unconnected --> |
| 207 | 207 |
| 208 <!-- TODO(jamiewalch): Implement Cancel, being careful when ignoring | |
| 209 the eventual server response not to ignore responses for any | |
| 210 subsequent requests. This should be unified with the host-side | |
| 211 Cancel button in the footer. | |
| 212 --> | |
| 213 <div data-ui-mode="client.connecting" class="message" | 208 <div data-ui-mode="client.connecting" class="message" |
| 214 i18n-content="VERIFYING_CODE"> | 209 i18n-content="VERIFYING_CODE"> |
| 215 </div> <!-- client.connecting --> | 210 </div> <!-- client.connecting --> |
| 216 | 211 |
| 217 <div data-ui-mode="client.connect-failed" | 212 <div data-ui-mode="client.connect-failed" |
| 218 class="message"> | 213 class="message"> |
| 219 <span id="connect-error-message" class="error-state"></span> | 214 <span id="connect-error-message" class="error-state"></span> |
| 220 </div> <!-- client.connect-failed --> | 215 </div> <!-- client.connect-failed --> |
| 221 | 216 |
| 222 <div data-ui-mode="client.session-finished" | 217 <div data-ui-mode="client.session-finished" |
| (...skipping 17 matching lines...) Expand all Loading... |
| 240 src="dividerbottom.png" | 235 src="dividerbottom.png" |
| 241 data-ui-mode="auth host client"> | 236 data-ui-mode="auth host client"> |
| 242 | 237 |
| 243 <footer class="choice-footer"> | 238 <footer class="choice-footer"> |
| 244 | 239 |
| 245 <div id="client-footer-text-cros" data-ui-mode="client.unconnected" | 240 <div id="client-footer-text-cros" data-ui-mode="client.unconnected" |
| 246 i18n-content="FOOTER_CHROME_OS"> | 241 i18n-content="FOOTER_CHROME_OS"> |
| 247 </div> <!-- client-footer-text-cros --> | 242 </div> <!-- client-footer-text-cros --> |
| 248 | 243 |
| 249 <div id="waiting-footer" | 244 <div id="waiting-footer" |
| 250 data-ui-mode="host.waiting-for-connection host.waiting-for-code"> | 245 data-ui-mode="host.waiting-for-connection host.waiting-for-code cli
ent.connecting"> |
| 251 <img src="spinner.gif"> | 246 <img src="spinner.gif"> |
| 252 <span class="waiting icon-label" i18n-content="FOOTER_WAITING"></span> | 247 <span class="waiting icon-label" i18n-content="FOOTER_WAITING"></span> |
| 253 <button id="cancel-button" class="big-button" | 248 <button id="cancel-button" class="big-button" |
| 254 onclick="remoting.cancelPendingOperation();" | 249 onclick="remoting.cancelPendingOperation();" |
| 255 i18n-content="CANCEL"> | 250 i18n-content="CANCEL"> |
| 256 </button> | 251 </button> |
| 257 </div> <!-- waiting-footer --> | 252 </div> <!-- waiting-footer --> |
| 258 | 253 |
| 259 <div id="nat-box-container" hidden> | 254 <div id="nat-box-container" hidden> |
| 260 <div class="information-box" | 255 <div class="information-box" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 271 | 266 |
| 272 <section id="debug-log" dir="ltr" hidden> | 267 <section id="debug-log" dir="ltr" hidden> |
| 273 <div id="statistics"> | 268 <div id="statistics"> |
| 274 </div> | 269 </div> |
| 275 <div id="debug-messages"> | 270 <div id="debug-messages"> |
| 276 </div> | 271 </div> |
| 277 </section> <!-- debug-log --> | 272 </section> <!-- debug-log --> |
| 278 | 273 |
| 279 </body> | 274 </body> |
| 280 </html> | 275 </html> |
| OLD | NEW |