-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (54 loc) · 1.86 KB
/
index.html
File metadata and controls
55 lines (54 loc) · 1.86 KB
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
<?php
session_start();
if ($_SESSION["loggedin"] != 1) {
header('Location: '.'http://chillsam.ddns.net/signin');
}
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chillnet</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="/component/utils/users.js"></script>
<script src="/component/utils/posts.js"></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css"
/>
</head>
<body>
<?php include($_SERVER['DOCUMENT_ROOT'] .
"/component/navbar/navbar.html"); ?>
<div class="main-grid">
<div id="posts-container">
<h1>What is going on right now?</h1>
<div id="posts"></div>
<div id="loading" class="loading-indicator">
<div class="spinner"></div>
</div>
</div>
<div class="sidebar">
<h1>Your friends</h1>
<p>Coming soon</p>
</div>
<form class="new-post" id="new-post">
<input
id="postInput"
type="text"
minlength="6"
name="content"
placeholder="Got something to say? "
value=""
/>
<i class="bi bi-send-fill"></i>
</form>
</div>
<script type="text/javascript">
var SESSION_USERID = '<?php echo $_SESSION["UserId"];?>';
</script>
<script src="script/index.js"></script>
</body>
</html>