2017-11-02 04:50:56 +01:00
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
2019-06-25 21:10:10 +02:00
|
|
|
<title>{{ .Title}}</title>
|
2017-11-02 04:50:56 +01:00
|
|
|
</head>
|
|
|
|
|
2019-06-25 21:10:10 +02:00
|
|
|
<body style="padding:10px;">
|
2017-11-02 04:50:56 +01:00
|
|
|
<input type="text" id="messageTxt" />
|
|
|
|
<button type="button" id="sendBtn">Send</button>
|
2019-06-25 21:10:10 +02:00
|
|
|
<div id="messages" style="width: 375px;margin:10 0 0 0px;border-top: 1px solid black;">
|
|
|
|
</div>
|
|
|
|
|
2017-11-02 04:50:56 +01:00
|
|
|
<script type="text/javascript">
|
2019-06-25 21:10:10 +02:00
|
|
|
var HOST = {{.Host }}
|
2017-11-02 04:50:56 +01:00
|
|
|
</script>
|
|
|
|
<script src="js/chat.js" type="text/javascript"></script>
|
|
|
|
</body>
|
|
|
|
|
2019-06-25 21:10:10 +02:00
|
|
|
</html>
|