-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (44 loc) · 1.26 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>AunaCraft | ChatLog</title>
<link href="style.css" rel="stylesheet" />
</head>
<body>
<div id="main">
<div id="background"></div>
<div id="foreground"></div>
<div id="header">
<center>
<img id="logo" src="assets/server-icon.png">
<p>
<input type="text" id="search" placeholder="Enter Log ID..." required>
<input type="submit" id="searchButton" name="" value="Request Log">
</center>
<hr color="#4f4f4f">
</div>
<center>
<div id="state">
</div>
</center>
<table id="chat" cellspacing="0" cellpadding="3">
<tr>
<th><span>Head</span></th>
<th><span>Name</span></th>
<th><span>Time</span></th>
<th><span>Message</span></th>
</tr>
<tbody id="table"></tbody>
</table>
<div id="footer">
<hr color="#4f4f4f">
<a id="footerLink" href="https://github.com/AunaCraft/ChatLog" target="_blank" rel="noopener noreferrer">
Host yourself / Download
</a>
<a id="copyrightDisclaimer">Copyright 2022 @ AunaCraft</a>
</div>
</div>
<script src="API.js"></script>
</body>
</html>