summaryrefslogtreecommitdiff
path: root/templates/chat.html
blob: 05957bf7b22b747ace3554ac7955f3de85ddedab (plain)
1
2
3
4
5
6
7
8
9
10
11
{{ define "content" }}
<div id="messages">
</div>
<div>
<form action="/chat" method="POST" autocomplete="off">
  <input id="fren_id" name="fren_id" value="{{ .User.Id }}" type="hidden">
  <input name="message" value="" type="text">
  <input type="submit" value="send.">
</form>
</div>
{{ end }}