Updated github web page, and replaced wiki by workbook.

This commit is contained in:
Jocelyn Fiat
2016-05-26 23:31:42 +02:00
parent e2150754cb
commit 2b29b4138d
102 changed files with 5061 additions and 2755 deletions
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<title>EWF Handling Client Request: File Upload Example</title>
</head>
<body>
<h1> EWF Handling Client Request: File Upload Example</h1>
<form action="/upload" enctype="multipart/form-data" method="POST">
<fieldset>
<legend>Upload file/s</legend>
<div>
<label>File
<input name="file-name[]" type="file" multiple>
</label>
<fieldset>
<div>
<button type=submit>Send</button>
</div>
</fieldset>
</form>
</body>
</html>