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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 <header class="choice-header"> | 78 <header class="choice-header"> |
79 <img id="icon" src="chromoting128.png"> | 79 <img id="icon" src="chromoting128.png"> |
80 <h1 class="icon-label"> | 80 <h1 class="icon-label"> |
81 <span i18n-content="pageTitle"> | 81 <span i18n-content="pageTitle"> |
82 </span> › <span i18n-content="modeAuthorize" | 82 </span> › <span i18n-content="modeAuthorize" |
83 data-ui-mode="auth"> | 83 data-ui-mode="auth"> |
84 </span><span i18n-content="modeConnect" data-ui-mode="client"> | 84 </span><span i18n-content="modeConnect" data-ui-mode="client"> |
85 </span><span i18n-content="modeShare" data-ui-mode="host"> | 85 </span><span i18n-content="modeShare" data-ui-mode="host"> |
86 </span> | 86 </span> |
87 </h1> | 87 </h1> |
88 <img id="divider-top" src="dividertop.png"> | |
89 </header> | 88 </header> |
90 | 89 |
| 90 <img id="divider-top" src="dividertop.png"> |
| 91 |
91 <div id="auth-panel" data-ui-mode="auth"> | 92 <div id="auth-panel" data-ui-mode="auth"> |
92 <div class="description" i18n-content="messageAuthorize"></div> | 93 <div class="description" i18n-content="messageAuthorize"></div> |
93 <div class="centered-button"> | 94 <div class="centered-button"> |
94 <button id="auth-button" class="big-button" | 95 <button id="auth-button" class="big-button" |
95 type="button" onclick="remoting.oauth2.doAuthRedirect();" | 96 type="button" onclick="remoting.oauth2.doAuthRedirect();" |
96 i18n-content="continueButton"></button> | 97 i18n-content="continueButton"></button> |
97 </div> | 98 </div> |
98 </div> <!-- auth-panel --> | 99 </div> <!-- auth-panel --> |
99 | 100 |
100 <div id="host-panel" data-ui-mode="host"> | 101 <div id="host-panel" data-ui-mode="host"> |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 <div data-ui-mode="client.connect-failed client.session-finished" | 186 <div data-ui-mode="client.connect-failed client.session-finished" |
186 class="centered-button"> | 187 class="centered-button"> |
187 <button type="button" class="big-button" i18n-content="ok" | 188 <button type="button" class="big-button" i18n-content="ok" |
188 onclick="remoting.setMode( | 189 onclick="remoting.setMode( |
189 remoting.AppMode.CLIENT_UNCONNECTED);"> | 190 remoting.AppMode.CLIENT_UNCONNECTED);"> |
190 </button> | 191 </button> |
191 </div> | 192 </div> |
192 | 193 |
193 </div> <!-- client-panel --> | 194 </div> <!-- client-panel --> |
194 | 195 |
| 196 <img id="divider-bottom" src="dividerbottom.png"> |
| 197 |
195 <footer class="choice-footer"> | 198 <footer class="choice-footer"> |
196 <img id="divider-bottom" src="dividerbottom.png"> | |
197 | |
198 <div id="client-footer-text" data-ui-mode="client.unconnected"> | 199 <div id="client-footer-text" data-ui-mode="client.unconnected"> |
199 <span i18n-content="footerClient1"></span><a | 200 <span i18n-content="footerClient1"></span><a |
200 class="switch-mode" href="#" i18n-content="footerClient2" | 201 class="switch-mode" href="#" i18n-content="footerClient2" |
201 onclick="remoting.setAppMode(remoting.AppMode.HOST);"></a><span | 202 onclick="remoting.setAppMode(remoting.AppMode.HOST);"></a><span |
202 i18n-content="footerClient3"></span> | 203 i18n-content="footerClient3"></span> |
203 </div> <!-- client-footer-text --> | 204 </div> <!-- client-footer-text --> |
204 | 205 |
205 <div id="client-footer-text-cros" data-ui-mode="client.unconnected" | 206 <div id="client-footer-text-cros" data-ui-mode="client.unconnected" |
206 i18n-content="footerCrOS"> | 207 i18n-content="footerCrOS"> |
207 </div> <!-- client-footer-text-cros --> | 208 </div> <!-- client-footer-text-cros --> |
(...skipping 23 matching lines...) Expand all Loading... |
231 | 232 |
232 <section id="debug-log" hidden> | 233 <section id="debug-log" hidden> |
233 <div id="statistics"> | 234 <div id="statistics"> |
234 </div> | 235 </div> |
235 <div id="debug-messages"> | 236 <div id="debug-messages"> |
236 </div> | 237 </div> |
237 </section> <!-- debug-log --> | 238 </section> <!-- debug-log --> |
238 | 239 |
239 </body> | 240 </body> |
240 </html> | 241 </html> |
OLD | NEW |