57 lines
2.5 KiB
Plaintext
57 lines
2.5 KiB
Plaintext
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Discord Clone - Group Chat</title>
|
|
<link rel="stylesheet" href="static/css/index.css"/>
|
|
</head>
|
|
<body>
|
|
<div class="chat-container">
|
|
<!--<div class="chat-container" style="background-image: url('cdn/background.png'); backdrop-filter: blur(10px); background-size: cover; background-position: center; background-repeat: no-repeat;">-->
|
|
<!-- Chat Header -->
|
|
<div class="chat-header">
|
|
<div class="chat-title">
|
|
<img class="user-avatar" src="cdn/profile/0"></img>
|
|
<h1>Chat title</h1>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Live Location Notification Bubble -->
|
|
<div class="notification-container">
|
|
<div class="live-location-bubble" id="locationBubble">
|
|
<div class="map-container">
|
|
<img src="cdn/map.png" alt="Map" />
|
|
</div>
|
|
<div class="location-content">
|
|
<div class="location-icon">
|
|
<img src="cdn/icons/location.svg" alt="Location"></img>
|
|
</div>
|
|
<button class="join-button" id="joinButton">
|
|
Join
|
|
</button>
|
|
<div class="location-text">Live Location</div>
|
|
<div class="location-users" id="locationUsers">
|
|
<!-- Users will be added dynamically -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Messages Container -->
|
|
<!--<div class="messages-container" style="background-image: url('cdn/background.png'); backdrop-filter: blur(10px); background-size: cover; background-position: center; background-repeat: no-repeat;">-->
|
|
<div class="messages-container"></div>
|
|
|
|
<!-- Input Container -->
|
|
<div class="input-container">
|
|
<div class="input-wrapper">
|
|
<input type="text" placeholder="Start Typing..." />
|
|
<button class="send-button">
|
|
<img src="cdn/icons/send.svg" alt="Send" />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|