-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
42 lines (30 loc) · 1.41 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Keller Hood</title>
<link type="text/css" rel="stylesheet" href="notime.css" />
</head>
<body>
<?php include 'includes/nav.php'; ?> <!-- include the navbar code -->
<header><h1>Home</h1></header>
<div class="wrap">
<p class="par" style="padding: 20px;">This is a semi-realtime chat client that is both free and completely anonymous if you want.<br />
Click <a href="rooms.php" style="background-color:#333; color: #EEE; padding-left:0;">rooms</a> to start chatting in one of the chatrooms, or, go to <a href="log.php" style="background-color:#333; color: #EEE; padding-left:0;">log</a> to see every message posted ever.<br /><br />
Please enjoy and have fun!<br /><br />
Go to <a href="about.php" style="background-color:#333; color: #EEE; padding-left:0;">about</a> for more information...<br /></p>
<?php
/*include 'includes/chats_lib.php';
clear_chats("log.txt");
clear_chats("rooms/messages_music.txt");
clear_chats("rooms/messages_sports.txt");
clear_chats("rooms/messages_technology.txt");
clear_chats("rooms/messages_tv_and_animation.txt");
clear_chats("rooms/messages_video_games.txt");*/
?>
</div>
<footer>
(c) keller hood & ethan grantham 2014
</footer>
</body>
</html>