This repository has been archived on 2025-02-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
cavecomm/templates/TEST_UPLOAD.html
2023-06-12 22:33:28 +02:00

22 lines
421 B
HTML

<!DOCTYPE html>
<html>
<head>
{{> templateIncludes/style.css.html}}
</head>
<body>
<form method="post" enctype="multipart/form-data" action="/fileuploadtestExecution">
<!-- upload of a single file -->
<p>
<label>Add file (single): </label><br/>
<input type="file" name="FILE_SUBMISSION"/>
</p>
<p>
<input type="submit"/>
</p>
</form>
</body>
</html>