summaryrefslogtreecommitdiff
path: root/templates/chat.html
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2025-01-03 01:47:07 -0800
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2025-01-03 01:47:07 -0800
commitf163a242792cd325c9414587d52f3d8584f28df1 (patch)
treeb57ad121cc3f4ffc2bc55f4d63bfaaf6026dd239 /templates/chat.html
downloadphoneof-f163a242792cd325c9414587d52f3d8584f28df1.tar.gz
phoneof-f163a242792cd325c9414587d52f3d8584f28df1.zip
initial commit
Diffstat (limited to 'templates/chat.html')
-rw-r--r--templates/chat.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/chat.html b/templates/chat.html
new file mode 100644
index 0000000..05957bf
--- /dev/null
+++ b/templates/chat.html
@@ -0,0 +1,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 }}