blob: b411bb212914b896d1b7cac9cfb948cd6688eb6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!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>
<a target="_blank" href="https://git.tempest.dev/semi/tree/">Source</a>
</div>
<div id="messages">
|