shithub: paste

Download patch

ref: 4e965b3e0c2d7138c632087e6bbb8bef9b9b8a6b
parent: 0f877570da31223a8243e6f594c68b8fa82d30c4
author: Alex Musolino <alex@musolino.id.au>
date: Tue May 27 05:11:36 EDT 2025

index.html: allow multiple files to be uploaded via form

--- a/index.html
+++ b/index.html
@@ -12,7 +12,7 @@
 		<form method="post" action="/post" enctype="multipart/form-data">
 			<textarea name="text" rows="24" cols="80"></textarea>
 			<br>
-			<input type="file" name="file">
+			<input type="file" name="file" multiple>
 			<br>
 			<input type="submit" name="submit" value="submit">
 		</form>
--