mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-15 04:30:25 +00:00
Add a simple multipart upload example
This commit is contained in:
parent
5d1d9af6cd
commit
07c622a0fe
9 changed files with 129 additions and 1 deletions
13
examples/upload/priv/index.html
Normal file
13
examples/upload/priv/index.html
Normal file
|
@ -0,0 +1,13 @@
|
|||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Multipart upload example</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<form method="post" enctype="multipart/form-data" action="/upload">
|
||||
<input type="file" name="inputfile"/>
|
||||
<input type="submit"/>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue