diff options
Diffstat (limited to 'static/chatbar.html')
| -rwxr-xr-x | static/chatbar.html | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/static/chatbar.html b/static/chatbar.html new file mode 100755 index 0000000..69d0727 --- /dev/null +++ b/static/chatbar.html @@ -0,0 +1,57 @@ +<html> + <head> + <title>dump.fm</title> + <link rel="stylesheet" type="text/css" href="/static/reset.css"> + <link rel="stylesheet" type="text/css" href="/static/pichat.css"> + + <link rel="shortcut icon" href="favicon.ico"> + <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> + <script type="text/javascript" src="sha1.js"></script> + <script type="text/javascript" src="pichat.js"></script> + <script> + jQuery(document).ready(initChat); + var Nick = $json_user_nick$; + </script> + <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><style type="text/css"> +<!-- +a { + font-size: 12px; + color: #000; +} +a:link { + text-decoration: none; +} +a:visited { + text-decoration: none; + color: #000; +} +a:hover { + text-decoration: none; + color: #00F; +} +a:active { + text-decoration: none; + color: #000; +} +#msgInputDiv{position:fixed; +bottom:17px; +} + +--> +</style></head> + +<body> +<div id="chatrap"> + $if(user_nick)$ + <div id="msgInputDiv"> + <input id="msgInput" class="msgInput" type="input" /> + <input id="msgSubmit" type="submit" value="Send Image URL" + /> + </div> + $endif$ + </div> + </div> + + + </body> +</html> |
