-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
58 lines (52 loc) · 1.41 KB
/
about.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
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<title>About Social CHS</title>
<link rel="stylesheet" type="text/css" href="main.css">
<style>
.main {
padding: 20px;
}
.main h1 {
font-size: 50px;
}
.main p,
.main li {
font-size: 20px;
}
.main h3 {
font-size: 30px;
}
</style>
</head>
<body>
<div class="menu">
<a><img src="https://th.bing.com/th/id/OIP.WtHJMFPvbx62FKV5ozTEwwAAAA?pid=ImgDet&rs=1" alt="CHS logo"></a>
<a href="./index.php">Home</a>
<a id="current-on">About</a>
<a href="./blog/blog.php">Blog</a>
<a href="./chat.php">Chat</a>
<a href="./games.php">Games</a>
<a href="./store.php">Store</a>
<?php
if (!isset($_SESSION["louswchs"])) {
echo "<a href = './login.php'>Login</a>";
} else {
echo "<a href = './settings.php'>Settings</a><a style = 'font-size: 30px'>Welcome, <b>" . $_SESSION["dnswchs"] . "</a></b>";
}
?>
</div>
<div class="main">
<h1>Social CHS - About</h1>
<p>Social CHS is an (unofficial) social site for CHS, built by CHS(<a href="https://github.com/Developer-Fan">Developer Fan</a>).
<br>
The purpose of Social CHS is to provide free and efficient connection to others, to <b>every</b> CHS member.
<hr style="visibility: hidden; height: 10px">
This version of Social CHS is BETA, released on .....
</p>
</div>
</body>
</html>