diff options
Diffstat (limited to 'remoting/client/appengine/chromoting_session.html')
-rw-r--r-- | remoting/client/appengine/chromoting_session.html | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/remoting/client/appengine/chromoting_session.html b/remoting/client/appengine/chromoting_session.html new file mode 100644 index 0000000..2d26b45 --- /dev/null +++ b/remoting/client/appengine/chromoting_session.html @@ -0,0 +1,61 @@ +<!doctype html> +<!-- +Copyright (c) 2011 The Chromium Authors. All rights reserved. +Use of this source code is governed by a BSD-style license that can be +found in the LICENSE file. +--> + +<html> + <head> + <title id="title">Chromoting Session</title> + <link rel="stylesheet" type="text/css" href="static_files/main.css" /> + <script type="text/javascript"> + <!-- + // TODO(ajwong): Total Hack. Do this nicer. + document.xmpp_auth_token="{{xmpp_token.token_string}}"; + document.username="{{username}}"; + document.hostname="{{hostname}}"; + document.hostjid="{{hostjid}}"; + --> + </script> + <script type="text/javascript" src="static_files/base.js"></script> + <script type="text/javascript" src="static_files/chromoting_session.js"> + </script> + </head> + <body class="chromoting_body" onload="init();"> + <div id="status_msg" class="status_msg"></div> + <div id="login_panel" class="local_login_panel"> + <table><tr><td valign="top" + style="text-align:center" nowrap="nowrap" bgcolor="#e8eefa"> + <table align="center" border="0" cellpadding="1" cellspacing="0"> + <tr> + <td align="center" colspan="2"> + Sign in to remote host + </td> + </tr><tr> + <td align="right" nowrap="nowrap"> + <span class="gaia_font">Username:</span> + </td><td> + <input type="text" id="username" value="" class="gaia_font"/> + </td> + </tr><tr> + <td align="right" nowrap="nowrap"> + <span class="gaia_font">Password:</span> + </td> + <td> + <input type="password" id="password" value="" class="gaia_font"/> + </td> + </tr><tr> + <td></td> + <td><input type="button" value="Sign in" class="gaia_font" + onclick="submitLogin();"/></td> + </tr> + </table> + </td></tr></table> + </div> + <div id="plugin_scroll_panel" class="plugin-scroll-panel"> + <embed name="chromoting" id="chromoting" + src="about://none" type="pepper-application/x-chromoting"> + </div> + </body> +</html> |