mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-10-02 15:25:26 +00:00
20 lines
361 B
HTML
20 lines
361 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>HTMx Scratch File</title>
|
|
<script src="../src/htmx.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Scratch Page</h1>
|
|
|
|
<button hx-get="foo.html">Trigger</button>
|
|
|
|
<form hx-post="/foo">
|
|
<input name="bar" type="text"/>
|
|
<input name="do" type="submit" value="foo"/>
|
|
</form>
|
|
|
|
</body>
|
|
</html> |