phoneof/templates/chat.html
Elizabeth Hunt f163a24279
All checks were successful
continuous-integration/drone/push Build is passing
initial commit
2025-01-03 01:47:07 -08:00

12 lines
295 B
HTML

{{ 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 }}