converse-desktop/index.html
Keith Maika ff8eaa91ea Allow the create account page to display properly.
Make the reconnect menu option always reload the index.html page instead of whatever the current page may be.
2022-04-13 09:56:59 +02:00

22 lines
775 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Converse Desktop</title>
<link rel="stylesheet" type="text/css" media="screen" href="node_modules/converse.js/dist/converse.min.css">
<link rel="stylesheet" type="text/css" href="resources/css/app.css">
</head>
<base href="./index.html">
<body class="converse-fullscreen">
<div class="main-window">
<div class="page-default">
<div id="conversejs-bg"></div>
</div>
</div>
<!-- Place libsignal at libs dir as it's no more distributed with converse.js -->
<script src="./3rdparty/libsignal-protocol.js"></script>
<script src="./node_modules/converse.js/dist/converse.min.js"></script>
<script type="module" src="./setup.js"></script>
</body>
</html>