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" /> |
11 <link rel="shortcut icon" href="chromoting128.png" /> | 11 <link rel="shortcut icon" href="chromoting128.png" /> |
| 12 <link rel="stylesheet" href="debug_log.css" /> |
12 <link rel="stylesheet" href="main.css" /> | 13 <link rel="stylesheet" href="main.css" /> |
13 <link rel="stylesheet" href="choice.css" /> | 14 <link rel="stylesheet" href="choice.css" /> |
| 15 <script src="debug_log.js"></script> |
| 16 <script src="oauth2.js"></script> |
14 <script src="remoting.js"></script> | 17 <script src="remoting.js"></script> |
15 <script src="oauth2.js"></script> | |
16 <title>Chromoting</title> | 18 <title>Chromoting</title> |
17 </head> | 19 </head> |
18 | 20 |
19 <body> | 21 <body> |
20 <div id="auth-panel"> | 22 <div id="auth-panel"> |
21 <span id="oauth2-entry"> | 23 <span id="oauth2-entry"> |
22 <form action="" onsubmit="authorizeOAuth2(); return false;"> | 24 <form action="" onsubmit="authorizeOAuth2(); return false;"> |
23 <label for="oauth2-code">OAuth2 Token:</label> | 25 <label for="oauth2-code">OAuth2 Token:</label> |
24 <input id="oauth2-code" class="display-inline" type="text" | 26 <input id="oauth2-code" class="display-inline" type="text" |
25 onkeyup="handleOAuth2CodeChange();" | 27 onkeyup="handleOAuth2CodeChange();" |
(...skipping 15 matching lines...) Expand all Loading... |
41 <span id="current-email" class="display-inline"></span> | 43 <span id="current-email" class="display-inline"></span> |
42 <input id="new-email" class="display-inline" name="new-email" | 44 <input id="new-email" class="display-inline" name="new-email" |
43 type="text" /> | 45 type="text" /> |
44 <input id="email-submit-button" class="display-inline" | 46 <input id="email-submit-button" class="display-inline" |
45 type="submit" /> | 47 type="submit" /> |
46 <input id="change-email-button" class="display-inline" type="button" | 48 <input id="change-email-button" class="display-inline" type="button" |
47 onclick="setEmail(''); return false;" value="Change Email" /> | 49 onclick="setEmail(''); return false;" value="Change Email" /> |
48 </form> | 50 </form> |
49 </span> <!-- email-entry --> | 51 </span> <!-- email-entry --> |
50 | 52 |
| 53 <span id="debug-enable"> |
| 54 <form> |
| 55 <input id="debug-log-toggle" class="display-inline" type="button" |
| 56 value="Debug Log" onclick="toggleDebugLog(); return false;"/> |
| 57 </form> |
| 58 </span> <!-- debug-enable --> |
| 59 |
51 </div> <!-- auth-panel --> | 60 </div> <!-- auth-panel --> |
52 | 61 |
53 <div id="main-panel"> | 62 <div id="main-panel"> |
54 <header> | 63 <header> |
55 <img id="icon" src="chromoting128.png"> | 64 <img id="icon" src="chromoting128.png"> |
56 <h1 class="icon-label host-element display-inline"> | 65 <h1 class="icon-label host-element display-inline"> |
57 Chromoting > Share | 66 Chromoting > Share |
58 </h1> | 67 </h1> |
59 <h1 class="icon-label client-element display-inline"> | 68 <h1 class="icon-label client-element display-inline"> |
60 Chromoting > Connect | 69 Chromoting > Connect |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 Click here to <a class="switch-mode" | 192 Click here to <a class="switch-mode" |
184 href="#" | 193 href="#" |
185 onclick="setGlobalModePersistent(remoting.CLIENT_MODE); | 194 onclick="setGlobalModePersistent(remoting.CLIENT_MODE); |
186 return false;"> | 195 return false;"> |
187 access a shared computer</a>. | 196 access a shared computer</a>. |
188 </div> <!-- host-footer --> | 197 </div> <!-- host-footer --> |
189 </footer> | 198 </footer> |
190 </div> <!-- main-panel --> | 199 </div> <!-- main-panel --> |
191 <div id="plugin-wrapper"> | 200 <div id="plugin-wrapper"> |
192 </div> | 201 </div> |
| 202 <div id="debug-log"> |
| 203 </div> |
193 </body> | 204 </body> |
194 </html> | 205 </html> |
OLD | NEW |