36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Table Demo</title>
|
|
<link rel="stylesheet" href="/static/css/style.css">
|
|
|
|
<!-- HTMX -->
|
|
<script src="https://unpkg.com/htmx.org@2.0.2"></script>
|
|
|
|
<!-- Favicons -->
|
|
<link href="/static/images/favicon.png" rel="icon">
|
|
</head>
|
|
<body>
|
|
<main class="table">
|
|
<section class="table__header">
|
|
<h1>Digital Hippo Labs - FlowSMS</h1>
|
|
</section>
|
|
<section class="table__content">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>From Number</th>
|
|
<th>Message</th>
|
|
<th>Timestamp</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="messages" hx-get="/sms-message/17072064096" hx-swap="innerHTML" hx-trigger="load, every 2s"></tbody>
|
|
</table>
|
|
</section>
|
|
</main>
|
|
</body>
|
|
<script src="https://kit.fontawesome.com/b031afcd74.js" crossorigin="anonymous"></script>
|
|
</html> |