-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.php
70 lines (63 loc) · 2.04 KB
/
index.php
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
//** init session
session_start();
//** load config
include ('./inc/config.php');
//** expire session after 5 minutes
if (isset ($_SESSION['ac_time'])) {
$ac_dif = (300-(time()-$_SESSION['ac_time']));
if ($ac_dif <= 0) {
//** clear session
unset ($_SESSION['ac_time']);
unset ($_SESSION['ac_user']);
//** update users online counter
$ac_on_cur = file_get_contents($ac_cur);
$ac_on_val = $ac_on_cur;
if ($ac_on_val <1) {
$ac_on_cur = 0;
} else {
$ac_on_cur = ($ac_on_val-1);
}
file_put_contents($ac_cur, $ac_on_cur);
//** load interface
header("Location: $ac_chm");
exit;
}
} else {
$_SESSION['ac_time'] = time();
}
?>
<!DOCTYPE html>
<html lang=en-GB>
<head>
<title>Atom Chat Login</title>
<meta charset=UTF-8 />
<meta name=language content=en-GB />
<meta name=description content="Atom Chat free PHP chat script"/>
<meta name=keywords content="Atom Chat"/>
<meta name=robots content="noodp, noydir"/>
<meta name=viewport content="width=device-width, height=device-height, initial-scale=1"/>
<link rel=icon href="<?php echo $ac_www . $ac_dir; ?>favicon.png" type="image/png"/>
<link rel=stylesheet href="<?php echo $ac_www . $ac_inc; ?>style.css" type="text/css"/>
</head>
<body>
<?php include ($ac_hdr); ?>
<object data="<?php echo $ac_www . $ac_nip; ?>" type="text/html">Failed to render object data!</object>
<div id=ac_menu>
<form action="<?php echo $ac_www . $ac_nif; ?>" method=POST id=ac_login accept-charset=UTF-8>
<div>
<label for=ac_user>User</label>
<input name=ac_user id=ac_user maxlength=16 title="Please enter your user name"/>
</div>
<div>
<label for=ac_pass>Pass</label>
<input name=ac_pass id=ac_pass maxlength=16 title="Please enter your password" type=password />
</div>
<div>
<input name=ac_login value=Login title="Click here to login" type=submit />
</div>
</form>
<?php include ($ac_ftr); ?>
</div>
</body>
</html>