File: file-input-test.html

package info (click to toggle)
htmx 2.0.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 96,944 kB
  • sloc: javascript: 65,214; ruby: 44; sh: 39; makefile: 7
file content (14 lines) | stat: -rw-r--r-- 322 bytes parent folder | download | duplicates (4)
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>