phoneof/templates/chat.html

12 lines
331 B
HTML
Raw Normal View History

2025-01-03 01:47:07 -08:00
{{ define "content" }}
<div id="messages">
</div>
<div>
2025-01-16 17:32:54 -08:00
<form action="/chat" method="POST" autocomplete="off" id="chat-form">
<input id="fren-id" name="fren_id" value="{{ .User.Id }}" type="hidden">
<input id="message-content" name="message" value="" type="text">
2025-01-03 01:47:07 -08:00
<input type="submit" value="send.">
</form>
</div>
{{ end }}