-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchatbox.view
42 lines (41 loc) · 1.1 KB
/
chatbox.view
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<div id="chatbox">
<div id="chatpane">
<?php SQL::getChat(); ?>
</div>
<div id="userpane">
<select multiple="multiple" size="29">
<?php SQL::getUsers(); ?>
</select>
</div>
<div id="regpane">
<script type="text/javascript">
jQuery(function() {
jQuery("button").button();
jQuery( "button" ).click(function() { $( "#dialog" ).dialog({ }); });
jQuery("nickname").focus();
});
</script>
<div id="dialog" title="User registration">
Please enter a nickname:
<form action="index.php" method="post">
<div>
<input id="nickname" name="nickname" type="text" />
<br /><br />
<button type="submit">Click here to join chat</button>
</div>
</form>
</div>
<div class="register">
<br />
<button>Click here to register</button>
</div>
</div>
<div id="tpane">
<form id="inputbox2" action="index.php" method="post">
<div>
<input type="text" size="50" id="inputpane" name="inputpane" />
<input id="schat" type="submit" value=">" />
</div>
</form>
</div>
</div>