EVOLUTION-MANAGER
Edit File: Chat.html
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <!DOCTYPE html> <html xmlns:wicket="http://wicket.apache.org"> <wicket:panel> <div id="chatTabs"> <ul class="nav nav-tabs" role="tablist"> </ul> <div class="tab-content"></div> </div> <form wicket:id="sendForm"> <div wicket:id="toolbarContainer" class="tool-container"></div> <div class="chat-msg-container"> <div class="input-group"> <div id="chatMessage" wicket:id="chatMessage"></div> <div class="input-group-append" id="button-addon4"> <button class="send btn btn-outline-primary" wicket:id="send" wicket:message="title:218">↵</button> </div> </div> <input type="hidden" wicket:id="activeTab" id="activeChatTab"/> </div> </form> <div hidden="hidden"> <div id="chat-date-template" class='date-row'></div> <div id="chat-msg-template" class='msg-row'> <div class='user-row'> <div class='from align-left'></div> <span class='time align-right'></span> <div class="clear"></div> </div> <div class='msg align-left'></div> <div class="clear"></div> </div> <div id="chat-actions-short-template" class='user clickable' wicket:message="title:1167"><i class="fas fa-address-card"></i></div> <div id="chat-actions-others-template"> <div class='add clickable' wicket:message="title:1186"><i class="fas fa-plus-circle"></i></div> <div class='new-email clickable' wicket:message="title:1253"><i class="fas fa-envelope"></i></div> <div class='invite clickable' wicket:message="title:1131"><i class="fas fa-link"></i></div> </div> <div id="chat-actions-accept-template" class='accept clickable' wicket:message="title:1190"><i class="fas fa-check"></i></div> <button id="chat-close-block" class="btn btn-sm btn-outline-secondary close-chat" wicket:message="title:85"> <i class="fas fa-times"></i> <span class="sr-only"><wicket:message key="85"/></span> </button> <div id="chat-msg-area-template" class="messageArea bg-white tab-pane h-100" role="tabpanel"></div> </div> </wicket:panel> </html>