summaryrefslogtreecommitdiff
path: root/ychat-0.6/html/input.html
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:41 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:41 +0200
commit9cd3ccffd5372dfde3af478e3f832f18db4be3f1 (patch)
tree631c295a4a4a16b57502b847626763a279bf6df7 /ychat-0.6/html/input.html
parent13aaf70af703748fe096e0664c305cd202637ad2 (diff)
tagging tags
Diffstat (limited to 'ychat-0.6/html/input.html')
-rwxr-xr-xychat-0.6/html/input.html45
1 files changed, 45 insertions, 0 deletions
diff --git a/ychat-0.6/html/input.html b/ychat-0.6/html/input.html
new file mode 100755
index 0000000..a49cb13
--- /dev/null
+++ b/ychat-0.6/html/input.html
@@ -0,0 +1,45 @@
+<html>
+ <head>
+ <title>
+ %%PGETITLE%%
+ </title>
+<link rel=stylesheet href="style.css" type=text/css>
+ <script language="JavaScript">
+ <!--
+ function delout()
+ {
+ document.input.message.focus();
+ document.input.message.select();
+ document.input.submit();
+ return false;
+ }
+ function selectinput()
+ {
+ document.input.message.select();
+ }
+ function popup(site,width,height)
+ {
+ var left = (screen.availWidth-width)/2;
+ var top = (screen.availHeight-height)/2;
+ var win = window.open(site,"_blank","width="+width+",height="+height+",left="+left+",top="+top+",scrollbars=yes");
+ }
+ //-->
+ </script>
+ </head>
+ <body bgcolor=#000000 text=#ffffff>
+ <table>
+ <tr><td>
+ <form name="input" action="input.html" target="blank" onsubmit="return delout();">
+ <input type="hidden" name="event" value="post">
+ <input type="hidden" name="tmpid" value="%%tmpid%%">
+ <input type="text" name="message" size="50">
+ <input type="submit" value="send" accesskey='s'>
+ <input type="button" value="select" accesskey='e' onclick="javascript:selectinput();">
+ </form>
+ </td>
+ <td>
+ <a href='#' onclick="javascript:popup('help.html?event=help&tmpid=%%tmpid%%', 576, 480)">Help</a>
+ </td></tr>
+ </table>
+ </body>
+</html>