mirror of
https://codeberg.org/JasterV/axum-htmx-example.git
synced 2026-04-26 18:10:09 +00:00
26 lines
724 B
HTML
26 lines
724 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>Counter</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<!-- <link href="css/style.css" rel="stylesheet"> -->
|
|
<script src="https://unpkg.com/htmx.org@1.9.3"
|
|
integrity="sha384-lVb3Rd/Ca0AxaoZg5sACe8FJKF0tnUgR2Kd7ehUOG5GCcROv5uBIZsOqovBAcWua"
|
|
crossorigin="anonymous"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div>
|
|
<button hx-post="/counter/increment" hx-trigger="click" hx-target="#count" hx-indicator="#indicator">
|
|
Click Me!
|
|
</button>
|
|
<div id="indicator" class="htmx-indicator">
|
|
<img src="/assets/three-dots-loader.svg">
|
|
</div>
|
|
<div id="count">{{ count }}</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|