From 55eb40d4bb489b2b26ab5d0ce2c70c7cb2f766b7 Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Sat, 21 May 2022 14:06:07 -0600 Subject: [PATCH] Add chat page, though it's not used yet --- srv/src/http/tpl/chat.html | 251 +++++++++++++++++++++++++++++++++++++ 1 file changed, 251 insertions(+) create mode 100644 srv/src/http/tpl/chat.html diff --git a/srv/src/http/tpl/chat.html b/srv/src/http/tpl/chat.html new file mode 100644 index 0000000..b2038e2 --- /dev/null +++ b/srv/src/http/tpl/chat.html @@ -0,0 +1,251 @@ +{{ define "body" }} + + + + + +
+ + + + + + + +
+
New Message
+
+
+ + +
+
+

+ Your name is displayed alongside your message. + + Your name+secret is used to generate your userID, which is also + displayed alongside your message. + + Other users can validate two messages are from the same person + by comparing the messages' userID. +

+
+
+
+
+ +
+
+
+
+ +
+
+ +
+ + + +{{ end }} + +{{ template "base.html" . }} +