21 lines
826 B
HTML
21 lines
826 B
HTML
<html>
|
|
<head>
|
|
<title>Krys4lide</title>
|
|
<script src="https://unpkg.com/htmx.org@2.0.0/dist/htmx.js" integrity="sha384-Xh+GLLi0SMFPwtHQjT72aPG19QvKB8grnyRbYBNIdHWc2NkCrz65jlU7YrzO6qRp" crossorigin="anonymous"></script>
|
|
<link href="/assets/css/style.css" rel="stylesheet">
|
|
</head>
|
|
|
|
<body>
|
|
<img src="/assets/media/tauri_logo.svg" alt="Tauri Logo" class="logo" />
|
|
<h1 class="test text-3xl font-bold underline">Krys4lide</h1>
|
|
<button
|
|
type="button"
|
|
class="rounded-md bg-indigo-600 px-3 py-2 text-sm font-semibold text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600"
|
|
hx-get="/hello"
|
|
hx-target="#hello"
|
|
>
|
|
Hello!
|
|
</button>
|
|
<div id="hello"></div>
|
|
</body>
|
|
</html> |