1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/examples/vweb/file_upload/index.html

7 lines
182 B
HTML

<h2>File Upload</h2>
<form method="POST" enctype="multipart/form-data" action="/upload">
<input type="file" name="upfile" multiple>
<input type="submit" value="Press">
</form>