-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchat.html
More file actions
49 lines (42 loc) · 1.77 KB
/
chat.html
File metadata and controls
49 lines (42 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="module" src="./js/common.js"></script>
<script type="module" src="./js/chat.js"></script>
<link rel="stylesheet" href="./css/chat.css">
<link rel="stylesheet" href="./css/styles.css">
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer">
<title>Chat</title>
</head>
<body>
<div class="loading-screen">
<div class="img-wrapper">
<object data="./assets/icons/favr-logo-white.svg" id="loading-logo-svg"></object>
</div>
</div>
<!-- Left Column -->
<div id="leftside-column"></div>
<!--Header-->
<header id="header"></header>
<!-- Main Content -->
<main class="content" id="chat-content">
<div id="chatWith" class="hide"></div>
<div id="messageHistory" class="hide"></div>
<div id="sendingMsgNotAvailable" class="hide">
<p>Sending message is not available because there is no "Ongoing" / "Pending Approval" Favors.</p>
</div>
<div id="sendMessageWrapper">
<form id="sendMessage" class="hide">
<input id="message" class="message" placeholder="Type a message"></input>
<button id="mic" class="mic" type="button"><i class="icon mic-icon" aria-hidden="true"></i></button>
<button id="send" class="send hide" type="submit"><i class="icon send-icon" aria-hidden="true"></i></button>
</form>
</div>
</main>
<!-- Footer -->
<footer id="footer"></footer>
</body>
</html>