2018-04-21 02:59:30 -03:00
|
|
|
<!--
|
2024-08-17 20:30:00 -03:00
|
|
|
/*****************************************************************************\
|
|
|
|
| █████ █████ ██ █ █████ █████ ████ ██ ████ █████ █████ ███ ® |
|
|
|
|
| ██ █ ███ █ █ ██ ██ ██ ██ ██ ██ █ ██ ██ █ █ |
|
|
|
|
| ██ ███ ████ █ ██ █ ████ █████ ██████ ██ ████ █ █ █ ██ |
|
|
|
|
| ██ ██ █ █ ██ █ █ ██ ██ ██ ██ ██ ██ █ ██ ██ █ █ |
|
|
|
|
| █████ █████ █ ███ █████ ██ ██ ██ ██ █████ ████ █████ █ ███ |
|
2018-04-21 02:59:30 -03:00
|
|
|
| |
|
2024-08-17 20:30:00 -03:00
|
|
|
| General Bots Copyright (c) pragmatismo.cloud. All rights reserved. |
|
2018-04-21 02:59:30 -03:00
|
|
|
| Licensed under the AGPL-3.0. |
|
2019-03-09 16:59:31 -03:00
|
|
|
| |
|
2018-04-21 02:59:30 -03:00
|
|
|
| According to our dual licensing model, this program can be used either |
|
|
|
|
| under the terms of the GNU Affero General Public License, version 3, |
|
|
|
|
| or under a proprietary license. |
|
|
|
|
| |
|
|
|
|
| The texts of the GNU Affero General Public License with an additional |
|
|
|
|
| permission and of our proprietary license can be found at and |
|
|
|
|
| in the LICENSE file you have received along with this program. |
|
|
|
|
| |
|
|
|
|
| This program is distributed in the hope that it will be useful, |
|
2024-08-17 20:30:00 -03:00
|
|
|
| but WITHOUT ANY WARRANTY, without even the implied warranty of |
|
2018-04-21 02:59:30 -03:00
|
|
|
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
|
|
|
| GNU Affero General Public License for more details. |
|
|
|
|
| |
|
2024-08-17 20:30:00 -03:00
|
|
|
| "General Bots" is a registered trademark of pragmatismo.cloud. |
|
2018-04-21 02:59:30 -03:00
|
|
|
| The licensing of the program under the AGPLv3 does not imply a |
|
|
|
|
| trademark license. Therefore any rights, title and interest in |
|
|
|
|
| our trademarks remain entirely with us. |
|
|
|
|
| |
|
2024-08-17 20:30:00 -03:00
|
|
|
\*****************************************************************************/
|
2018-04-21 02:59:30 -03:00
|
|
|
-->
|
|
|
|
|
2024-09-18 18:43:19 -03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html style="width: 100%; height: 100%" class="{themeColor}">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="./css/pragmatismo.css" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="/themes/{theme}/css/ChatPane.css" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="/themes/{theme}/css/Content.css" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="/themes/{theme}/css/Footer.css" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="/themes/{theme}/css/GifPlayer.css" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="/themes/{theme}/css/MediaPlayer.css" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="/themes/{theme}/css/NavBar.css" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="/themes/{theme}/css/App.css" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="/themes/{theme}/css/SideBarMenu.css" />
|
2018-04-21 02:59:30 -03:00
|
|
|
|
2024-09-18 18:43:19 -03:00
|
|
|
<script src="./js/webchat.js"></script>
|
|
|
|
<title>{title} - General Bots Community Edition</title>
|
2023-02-23 08:11:09 -03:00
|
|
|
|
2024-09-18 18:43:19 -03:00
|
|
|
<style>
|
|
|
|
.loader {
|
|
|
|
opacity: 0 !important;
|
|
|
|
/* filter: opacity(0); Problem in recent Chrome 68+ */
|
|
|
|
}
|
|
|
|
</style>
|
2018-04-21 02:59:30 -03:00
|
|
|
|
2024-09-18 18:43:19 -03:00
|
|
|
<script>
|
2024-09-19 09:17:30 -03:00
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
|
|
setTimeout(() => {
|
|
|
|
const input = document.querySelector('.webchat__send-box-text-box__input');
|
|
|
|
if (input) {
|
|
|
|
input.focus();
|
|
|
|
}
|
|
|
|
}, 3000); // Adjust timing as needed
|
|
|
|
});
|
2024-09-18 18:43:19 -03:00
|
|
|
</script>
|
|
|
|
</head>
|
2024-08-31 16:26:54 -03:00
|
|
|
|
2024-09-18 18:43:19 -03:00
|
|
|
<body style="background-color: black">
|
2018-08-28 17:50:19 -03:00
|
|
|
<div id="root"></div>
|
2024-09-18 18:43:19 -03:00
|
|
|
</body>
|
|
|
|
</html>
|