File: index.php

package info (click to toggle)
licq 1.3.4-2
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 22,048 kB
  • ctags: 8,640
  • sloc: cpp: 76,924; sh: 9,845; ansic: 5,424; perl: 3,449; lex: 857; xml: 804; php: 691; makefile: 393; csh: 48
file content (42 lines) | stat: -rw-r--r-- 1,383 bytes parent folder | download | duplicates (3)
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
    <head>
        <title>licq</title>
		<link rel="StyleSheet" type="text/css" href="licqweb.css" />
		<link rel="shortcut icon" href="images/favicon.ico">
    </head>
    <body onload="checkSession()">
	<div id="tooltip"></div>
	<script type="text/javascript" src="licqweb.js" />
    <h1>licq<i><font color="#5555ff">web</font></i></h1>
	<div id="login" class="loginwin">
		<div class="bar">licqweb login</div>
		<div class="centre">
			UIN <input id="uin" type="text"/><p>
			Password <input id="password" type="password"/><p>
			<input type="submit" onclick="login(); return false;" value="Login" />
		</div>
	</div>
	<div id="contactList" class="box" style="left:10px;top:150px;display:none;">
		<div class="bar" onmousedown="init_drag(event, 'contactList')" id="nick">licqweb</div>
		<div id="contacts"></div>
		<div id="ownerStatus"></div>
	</div>
	<div id="statusMenu"></div>
	<div id="windows"></div>
	<div class="logWindow" id="log"></div>
	<div id="debug"></div>
<?
	$fd = fopen("http://www.licq.org/licqweb-news.txt", "r");
	if (!$fd)
		$fd = fopen("http://www.thejon.org/licqweb-news.txt", "r");
	if ($fd) {
		$str = "";
		while(!feof($fd))
			$str .= fread($fd, 4096);
		fclose($fd);
	}
	echo "<div id=\"newsid\" class=\"news\"><div class=\"bar\">News</div>".$str."</div>\n";
?>
    </body>
</html>