Jade/views/chat.html
2024-04-25 23:47:52 +02:00

12 lines
449 B
HTML

<div class="chat-container">
<h1 class="title is-1">Chat Page</h1>
<div hx-get="/loadChat" hx-trigger="load" hx-swap="outerHTML"></div>
<div class="columns is-centered">
<div class="column is-8">
<form hx-put="/chat" hx-swap="beforeend" hx-target="#chat-messages">
<input class="input mx-5" type="text" placeholder="Type your message here..." name="message" />
</div>
</div>
</div>
</div>