phoneof/templates/chat.html
Elizabeth Hunt 49a7053dfc
All checks were successful
continuous-integration/drone/push Build is passing
bruh moment
2025-01-16 17:32:54 -08:00

12 lines
331 B
HTML

{{ define "content" }}
<div id="messages">
</div>
<div>
<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">
<input type="submit" value="send.">
</form>
</div>
{{ end }}