mirror of
https://github.com/labstack/echo.git
synced 2025-01-14 02:22:49 +02:00
eef1574969
Signed-off-by: Vishal Rana <vr@labstack.com>
18 lines
423 B
HTML
18 lines
423 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>File Upload</title>
|
|
</head>
|
|
<body>
|
|
<h1>Upload Files</h1>
|
|
|
|
<form action="/upload" method=post enctype="multipart/form-data">
|
|
Name: <input type="text" name="name"><br>
|
|
Email: <input type="email" name="email"><br>
|
|
Files: <input type="file" name="files" multiple><br><br>
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
</body>
|
|
</html>
|