-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchat.html
More file actions
41 lines (34 loc) · 1.51 KB
/
Copy pathchat.html
File metadata and controls
41 lines (34 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chat</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/web3/1.7.4/web3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
</head>
<body class="bg-dark text-light">
<nav class="navbar navbar-dark bg-success">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">Military Chat</a>
<div>
<a class="btn btn-outline-light me-2" href="friends.html">Friends</a>
<a class="btn btn-outline-light" href="chat.html">Chat</a>
</div>
</div>
</nav>
<div class="container mt-5">
<h2 class="text-center">Chat Room</h2>
<div class="card bg-success text-light p-4">
<input type="text" class="form-control mb-3" id="chatFriendAddress" placeholder="Enter friend's address">
<div class="message-box p-3 bg-dark rounded mb-3" id="messageBox" style="height: 200px; overflow-y: auto;"></div>
<input type="text" class="form-control mb-2" id="messageInput" placeholder="Type your message">
<button class="btn btn-light w-100 mb-2" onclick="sendMessage()">Send</button>
<button class="btn btn-outline-light w-100" onclick="readMessages()">Load Messages</button>
</div>
</div>
<script src="app.js"></script>
</body>
</html>