summaryrefslogtreecommitdiff
path: root/html/input.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/input.html')
-rwxr-xr-xhtml/input.html48
1 files changed, 24 insertions, 24 deletions
diff --git a/html/input.html b/html/input.html
index 31ed9fe..b5e4cd2 100755
--- a/html/input.html
+++ b/html/input.html
@@ -10,7 +10,6 @@
<!--
function delout()
{
- document.input.message.value = document.input.message.value.replace(/&/g, '\\AND');
document.input.submit();
document.input.message.value = "";
document.input.message.focus();
@@ -26,35 +25,36 @@
var top = (screen.availHeight-height)/2;
var win = window.open(site,"_blank","width="+width+",height="+height+",left="+left+",top="+top+",scrollbars=yes");
}
- function chgscroll(f)
- {
- if(f.checked)
- parent.stream.autoscroll();
- else
- parent.stream.stopscroll();
- }
//-->
</script>
</head>
- <body>
+ <body bgcolor=#000000 text=#ffffff>
+ <table>
+ <tr><td>
<form method="GET" name="input" action="input.html" target="blank" onsubmit="return delout();">
- <div style="position: absolute; top: 5px;">
- <input class="text" type="text" name="message" size="60" maxlength="%%chat.maxlength.message%%">
- <input type="submit" value="Send" accesskey='s'>
- <input type="button" value="Select" accesskey='e' onclick="javascript:selectinput();">
- </div>
- <div style="position: absolute; top: 29px;">
- <a href='#' class="fancy" onclick="javascript:popup('colors.html?event=colors&tmpid=%%tmpid%%', 600, 480)">Colors</a>
- <a href='#' class="fancy" onclick="javascript:popup('options.html?event=options&tmpid=%%tmpid%%', 600, 480)">Options</a>
- <a href='#' class="fancy" onclick="javascript:popup('help.html?event=help&tmpid=%%tmpid%%', 600, 480)">Help</a>
- <a href='#' class="fancy" onclick="javascript:popup('loggedin.html?event=loggedin&tmpid=%%tmpid%%', 600, 480)">Users</a>
- <a href='#' class="fancy" onclick="javascript:popup('admin.html?event=admin&tmpid=%%tmpid%%', 600, 480)">Admin</a>
- <a href='input.html?event=input&tmpid=%%tmpid%%&message=%2Fq' class="fancy" target='blank'>Logout</a>
- Scrolling:
- <input type="checkbox" name="scroll" checked onClick="chgscroll(this);">
- </div>
<input type="hidden" name="event" value="input">
<input type="hidden" name="tmpid" value="%%tmpid%%">
+ <input type="text" name="message" size="60" maxlength="%%chat.maxlength.message%%">
+ <input type="submit" value="send" accesskey='s'>
+ <input type="button" value="select" accesskey='e' onclick="javascript:selectinput();">
</form>
+ </td>
+ <td valign=top>
+ <a href='#' onclick="javascript:popup('colors.html?event=colors&tmpid=%%tmpid%%', 600, 480)">Colors</a>
+ </td>
+ <td valign=top>
+ <a href='#' onclick="javascript:popup('options.html?event=options&tmpid=%%tmpid%%', 600, 480)">Options</a>
+ </td>
+ <td valign=top>
+ <a href='#' onclick="javascript:popup('help.html?event=help&tmpid=%%tmpid%%', 600, 480)">Help</a>
+ </td>
+ <td valign=top>
+ <a href='#' onclick="javascript:popup('admin.html?event=admin&tmpid=%%tmpid%%', 600, 480)">Admin</a>
+ </td>
+ <td valign=top>
+ <a href='input.html?event=input&tmpid=%%tmpid%%&message=%2Fq' target='blank'>Logout</a>
+ </td>
+ </tr>
+ </table>
</body>
</html>