-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (24 loc) · 843 Bytes
/
index.html
File metadata and controls
25 lines (24 loc) · 843 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="icon" href="assets/img/logo.png" type="image/png">
<title>PVRChat</title>
</head>
<body>
<div id="input-container">
<input type="text" id="ip-input" placeholder="Server IP">
<input type="text" id="port-input" placeholder="Server Port">
<input type="text" id="nick-input" placeholder="Your Nickname">
<button id="connect-button">Connect</button>
</div>
<div id="chat-container" style="display: none;">
<div id="chat-box"></div>
<input type="text" id="message-input" placeholder="Type your message...">
<button id="send-button">Send</button>
</div>
<script src="assets/js/main.js"></script>
</body>
</html>