<div id=“chat-interface”> <select id=“chat-type” onchange=“toggleChatType()”> <option value=“private”>Nhắn tin riêng</option> <option value=“group”>Nhắn tin nhóm</option> </select> <div id=“private-chat” style=“display: block;”> <label for=“receiver_id”>Chọn người nhận:</label> <select id=“receiver_id”> </select> </div> <div id=“group-chat” style=“display: none;”> <label for=“group_id”>Chọn nhóm:</label> <select id=“group_id”> </select> </div> <textarea id=“message” placeholder=“Nhập tin nhắn…”></textarea> <button onclick=“sendMessage()”>Gửi</button> <div id=“chat-box”></div> </div>