22 lines
421 B
HTML
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>
|
|
|
|
|
|
|
|
|