phoneof/templates/chat.html

12 lines
295 B
HTML
Raw Permalink Normal View History

2025-01-03 04:47:07 -05:00
{{ 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 }}