Files
remote-web-view/static/post-event.html
2026-02-18 23:47:03 +01:00

30 lines
446 B
HTML

<!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>