forked from SS13/black_old
-
Notifications
You must be signed in to change notification settings - Fork 12
/
admin_pm.html
53 lines (50 loc) · 1.29 KB
/
admin_pm.html
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
43
44
45
46
47
48
49
50
51
52
53
<html>
<title>Shittiest Player Ever - PM</title>
<style type="text/css">
body
{
font-size: 10pt;
font-family: Verdana, sans-serif;
}
h1, h2, h3, h4, h5, h6
{
color: #00f;
font-family: Georgia, Arial, sans-serif;
}
#chatlog
{
border: 1px grey solid;
height: 280px;
width: 500px;
overflow-y: scroll;
word-wrap: break-word;
}
img {
border: 0px;
}
p.lic {
font-size: 6pt;
}
</style>
<body>
<div id="chatlog">
<!-- Print logged text here, different colors for your own key and other user's key -->
Badmin: Hey why the fuck are you killing that dude???<br><br>
Shittiest Player Ever: he tok ym baten n id and i ahd to use the lasre on his *ss<br><br>
Badmin: wow good fucking job, you are the best player ever!!!!!!<br><br>
Badmin: where the fuck did you learn english?<br><br>
Shittiest Player Ever: he tryed to k;ikll me<br><br>
Badmin: you are shit!!!!!
</div>
<script language="JavaScript">
var objDiv = document.getElementById("chatlog");
objDiv.scrollTop = objDiv.scrollHeight;
</script>
<br>
<form name="chatinput" action="byond://?src=/* ref src */" method="get">
<input type="hidden" name="src" value="/* ref src */">
<input type="text" name="message" maxlength="120" size="70">
<input type="submit" value="Send">
</form>
</body>
</html>