flowsms/templates/index.html
Carlos Rivas 462873c30d
All checks were successful
Build Python App / build (push) Successful in 23s
Update phone number
2024-08-23 22:11:35 -07:00

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>