blob: 1276263c4f16c415320c548299fba4ed287af72a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Scratch file to test file upload</title>
<script src="../../src/htmx.js"></script>
</head>
<body>
<form hx-post="/">
<input type="hidden" name="foo" value="bar">
<input type="file" name="file">
<button>Submit</button>
</form>
</body>
</html>
|