diff options
Diffstat (limited to 'static/index.html')
-rw-r--r-- | static/index.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/static/index.html b/static/index.html new file mode 100644 index 0000000..efaf070 --- /dev/null +++ b/static/index.html @@ -0,0 +1,25 @@ +<!doctype html> +<html> + <head> + <meta charset="UTF-8"/> + <title>Slightly-less-minimally viable chat</title> + <link rel="stylesheet" href="/style.css"/> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + </head> + <body> + <div id="chat" method="post" action="/"> + <form method="post" action="/"> + <input autofocus autocomplete="off" type="text" name="message" value="" /> + <button type="submit"> + <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="currentColor"><path d="M120-160v-640l760 320-760 320Zm80-120 474-200-474-200v140l240 60-240 60v140Zm0 0v-400 400Z"/></svg> + </button> + </form> + </div> + <div id="footer"> + <p>created by tempest-vi</p> + <button type="button" popovertarget="settings_modal" popovertargetaction="toggle">Settings</button> + <dialog popover id="settings_modal"> + <iframe width="100%" height="100%" style="border: none;" src="/settings"></iframe> + </dialog> + </div> + <div id="messages"> |