todo/frontend/templates/index.html

43 lines
1.7 KiB
HTML

{{ define "index" }}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/daisyui@4.6.0/dist/full.min.css" rel="stylesheet" type="text/css" />
<script src="https://cdn.tailwindcss.com?plugins=forms,typography,aspect-ratio,line-clamp"></script>
<script src="https://unpkg.com/htmx.org@latest"></script>
<script src="https://unpkg.com/htmx.org@latest/dist/ext/remove-me.js"></script>
<script src="https://unpkg.com/htmx.org@latest/dist/ext/client-side-templates.js"></script>
<script src="https://unpkg.com/mustache@latest"></script>
<link rel="stylesheet" href="/css/custom.css">
<title>HTMX Test</title>
</head>
<body class="bg-[#a600f9] min-h-screen text-center text-white">
<div id="app">
<button class="btn btn-accent text-black text-2xl m-8" hx-disabled-elt="this" hx-get="/users"
hx-swap="innerHTML transition:true" hx-indicator="#indicator" hx-target="#content">Get
list of users</button>
</div>
<div id="indicator">
<img src="/assets/bars.svg" alt="Loading..." class="h-12 w-12 mx-auto indicator">
</div>
<div id="content">
</div>
<div hx-ext="remove-me" role="alert" class="alert alert-success" remove-me="2s">
<svg xmlns="http://www.w3.org/2000/svg" class="stroke-current shrink-0 h-6 w-6" fill="none" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
<span>Your purchase has been confirmed!</span>
</div>
</body>
</html>
{{ end }}