faaso/public/index.html

26 lines
651 B
HTML
Raw Normal View History

2024-07-02 22:02:05 +00:00
<!DOCTYPE html>
2024-07-02 14:27:27 +00:00
<head>
2024-07-02 22:02:05 +00:00
<meta charset="utf-8" />
2024-07-02 15:40:47 +00:00
<link rel="stylesheet" href="https://matcha.mizu.sh/matcha.css" />
<script src="https://unpkg.com/htmx.org@2.0.0"></script>
2024-07-02 22:02:05 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-07-02 14:27:27 +00:00
<body>
2024-07-02 22:02:05 +00:00
<header class="container">
<h1>Your Funko Collection</h1>
</header>
<main class=container>
2024-07-02 15:40:47 +00:00
<button hx-get="funkos/?format=html" hx-target="#funko-list">Update</button>
<table>
<thead>
<tr>
<th>Name</th>
<th>Status</th>
<th>Action</th>
</tr>
<tbody id="funko-list">
</tbody>
2024-07-02 22:02:05 +00:00
</thead>
</main>
2024-07-02 14:27:27 +00:00
</body>
</head>