<!DOCTYPE html><html><head><title>PylonsChat</title><!--Import both the css stylesheet and the javascript. Notice that
orbited.js is a static file being served by Orbited itself.
--><scriptsrc="/_/orbited.js"></script>${h.stylesheet_link_tag('chat.css')}${h.javascript_include_tag('chat.js')}</head><body><!--This text box and submit button is for the user's nickname.
Pressing submit will connect to Orbited using the best transport for
this browser, and then send a join message to the chat application.
--><inputtype="text"id="nickname"><inputtype="button"value="nickname"onclick="connect();"><!--This div will contain the actual content of the chat.--><divid="box"></div><!--This text box and submit button accept chat messages.--><inputtype="text"id="chat"><inputtype="submit"value="chat"onclick="send_msg();"></body></html>