Initial commit

This commit is contained in:
2026-02-18 23:47:03 +01:00
commit 94757e8cc3
8 changed files with 421 additions and 0 deletions

29
static/post-event.html Normal file
View File

@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<title>Test of posting event</title>
</head>
<body>
<form action="/emit-multipart" method="post" enctype="multipart/form-data">
<div>
<label>
Resource ID:
<input type="text" name="resource" required>
</label>
</div>
<div>
<label>
File:
<input type="file" name="file" required>
</label>
</div>
<div>
<button type="submit">Post</button>
</div>
</form>
</body>
</html>