2021-11-19 16:30:17 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<!-- Required meta tags -->
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta http-equiv="Content-Security-Policy" content="script-src 'self';">
|
|
|
|
<!-- Bootstrap CSS -->
|
|
|
|
<link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.min.css">
|
2022-03-12 14:06:49 +00:00
|
|
|
<link rel="stylesheet" href="../node_modules/bootstrap-icons/font/bootstrap-icons.css">
|
|
|
|
<!-- Custom CSS -->
|
|
|
|
<link rel="stylesheet" type="text/css" href="styles.css" />
|
2021-11-19 16:30:17 +00:00
|
|
|
<title>FreeDATA - CHAT</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<!-- bootstrap -->
|
|
|
|
<script src="../node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
<!-- chart.js -->
|
|
|
|
<script src="../node_modules/chart.js/dist/chart.min.js"></script>
|
|
|
|
<script src="../node_modules/chartjs-plugin-annotation/dist/chartjs-plugin-annotation.min.js"></script>
|
|
|
|
|
2022-03-14 19:21:15 +00:00
|
|
|
<!--<script type="module" src="../node_modules/emoji-picker-element/index.js"></script>-->
|
2022-03-12 14:06:49 +00:00
|
|
|
|
2022-03-14 19:21:15 +00:00
|
|
|
<script type="module" src="../node_modules/emoji-picker-element/picker.js"></script>
|
|
|
|
<script type="module" src="../node_modules/emoji-picker-element/database.js"></script>
|
2022-03-12 14:06:49 +00:00
|
|
|
|
|
|
|
|
2022-03-14 19:21:15 +00:00
|
|
|
<div class="position-absolute container w-100 h-100 bottom-0 end-0 mb-5" style="z-index:100; display: none" id="emojipickercontainer">
|
|
|
|
<emoji-picker locale="en" class="position-absolute bottom-0 end-0 p-1 mb-2" data-source="../node_modules/emoji-picker-element-data/en/emojibase/data.json"></emoji-picker>
|
|
|
|
</div>
|
|
|
|
|
2022-03-12 14:06:49 +00:00
|
|
|
<div class="container-fluid">
|
|
|
|
<div class="row h-100">
|
2022-03-27 19:04:04 +00:00
|
|
|
<div class="col-4 p-2 bg-light">
|
2022-03-12 14:06:49 +00:00
|
|
|
<! ------Chats area ---------------------------------------------------------------------->
|
|
|
|
|
2022-03-14 19:21:15 +00:00
|
|
|
<div class="list-group" id="list-tab" role="tablist">
|
2022-03-12 14:06:49 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div class="col-8 border vh-100 ">
|
|
|
|
<! ------messages area ---------------------------------------------------------------------->
|
|
|
|
<div class="container overflow-auto" id="message-container" style="height: 90%">
|
|
|
|
|
|
|
|
<div class="tab-content" id="nav-tabContent">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!--<div class="container position-absolute bottom-0">-->
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<!-- </div>-->
|
|
|
|
|
2022-03-27 19:04:04 +00:00
|
|
|
<div class="container-fluid mt-4 p-0">
|
|
|
|
|
|
|
|
<div class="input-group bottom-0 w-100">
|
|
|
|
<input class="form-control" maxlength="8" style="max-width: 6rem; text-transform:uppercase" id="chatModuleDxCall" placeholder="DX CALL"></input>
|
|
|
|
<input class="form-control" id="chatModuleMessage" placeholder="Message"></input>
|
|
|
|
|
|
|
|
<button class="btn btn-sm btn-primary me-2" id="emojipickerbutton" type="button"><i class="bi bi-emoji-smile"></i></button>
|
|
|
|
|
|
|
|
<!--<input class="form-control" type="file" id="selectFiles" style="display: none;">-->
|
|
|
|
<button class="btn btn-sm btn-primary me-2" style="width: 3rem" id="selectFilesButton" type="button"><i class="bi bi-paperclip" style="font-size: 1.2rem; color: white;"></i></button>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<button class="btn btn-sm btn-secondary me-2" style="width: 5rem" id="sendMessage" type="button"><i class="bi bi-send" style="font-size: 1.2rem; color: white;"></i></button>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
2022-03-12 14:06:49 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-03-27 19:04:04 +00:00
|
|
|
<!--
|
2022-03-12 14:06:49 +00:00
|
|
|
<nav class="navbar fixed-bottom navbar-light bg-light">
|
|
|
|
<div class="container-fluid">
|
|
|
|
|
|
|
|
<div class="input-group bottom-0 w-100">
|
|
|
|
<input class="form-control" maxlength="8" style="max-width: 6rem; text-transform:uppercase" id="chatModuleDxCall" placeholder="DX CALL"></input>
|
|
|
|
<input class="form-control" id="chatModuleMessage" placeholder="Message"></input>
|
2022-03-14 19:21:15 +00:00
|
|
|
|
2022-03-27 19:04:04 +00:00
|
|
|
<button class="btn btn-sm btn-primary me-2" id="emojipickerbutton" type="button"><i class="bi bi-emoji-smile"></i></button>
|
2022-03-14 19:21:15 +00:00
|
|
|
|
2022-03-27 19:04:04 +00:00
|
|
|
<input class="form-control" type="file" id="selectFiles" style="display: none;">
|
|
|
|
<button class="btn btn-sm btn-primary me-2" style="width: 3rem" id="selectFilesButton" type="button"><i class="bi bi-paperclip" style="font-size: 1.2rem; color: white;"></i></button>
|
2022-03-14 19:21:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2022-03-27 19:04:04 +00:00
|
|
|
<button class="btn btn-sm btn-secondary me-2" style="width: 5rem" id="sendMessage" type="button"><i class="bi bi-send" style="font-size: 1.2rem; color: white;"></i></button>
|
|
|
|
|
2022-03-12 14:06:49 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</nav>
|
2022-03-27 19:04:04 +00:00
|
|
|
-->
|
2022-03-12 14:06:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2021-11-19 17:49:36 +00:00
|
|
|
</div>
|
2021-11-19 16:30:17 +00:00
|
|
|
|
2022-03-12 14:06:49 +00:00
|
|
|
|
2021-11-19 17:49:36 +00:00
|
|
|
|
2022-03-12 14:06:49 +00:00
|
|
|
|
2021-11-19 17:49:36 +00:00
|
|
|
|
2021-11-19 16:30:17 +00:00
|
|
|
</body>
|
|
|
|
</html>
|