mirror of
https://github.com/kataras/iris.git
synced 2025-12-17 09:57:01 +00:00
17 lines
475 B
HTML
17 lines
475 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Upload Files</title>
|
|
</head>
|
|
<body>
|
|
<form enctype="multipart/form-data"
|
|
action="/upload" method="POST">
|
|
<input type="file" name="uploadfile" multiple/> <input type="hidden"
|
|
name="token" value="{{.}}" />
|
|
|
|
<input type="submit" value="upload" />
|
|
</form>
|
|
</body>
|
|
</html> |