about summary refs log tree commit diff
path: root/converse.html
blob: b3f5dcb79e22fbd7e84b2d04d1b2e21bc66dacb2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!doctype html>
<html lang="en">

	<head>
		<meta charset="utf-8">
		<meta http-equiv="x-ua-compatible" content="ie=edge">
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<link rel="stylesheet" type="text/css" media="screen" href="/dist/converse.min.css">
		<script src="/dist/converse.min.js" charset="utf-8"></script>
		<script src="/dist/libsignal-protocol.js"></script>
		<title>webchat</title>
	</head>

	<body>
		<div class="container">
		</div>
	</body>
	<script>
		converse.initialize({
			websocket_url: 'wss://xmpp.hmm.st/ws/',
			locked_domain: 'hmm.st',
			registration_domain: 'hmm.st',
			domain_placeholder: 'hmm.st',
			message_archiving: 'always',
			view_mode: 'fullscreen'
		});
	</script>
</html>