annotate example_webpage.html @ 36:b841dc424baf
Avoid caching of request.get_params and request.post_params to allow modification of request.get_params_list and request.post_params_list; Allow writing to request.get_params and request.post_params
 | author | jbe | 
 | date | Mon Mar 02 00:53:14 2015 +0100 (2015-03-02) | 
 | parents | f6d3b3f70dab | 
 | children |  | 
 
 | rev | line source | 
| jbe@0 | 1 <html lang="en"> | 
| jbe@0 | 2   <head> | 
| jbe@0 | 3     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | 
| jbe@0 | 4     <link href="example_webpage.css" rel="stylesheet" type="text/css"> | 
| jbe@0 | 5     <title>Moonbridge Network Server for Lua Applications – Example Application</title> | 
| jbe@0 | 6   </head> | 
| jbe@0 | 7   <body> | 
| jbe@0 | 8     <h1>Moonbridge Network Server for Lua – Example Application</h1> | 
| jbe@0 | 9     <h2>Test POST request with file upload</h2> | 
| jbe@0 | 10     <form action="/post_example" method="POST" enctype="multipart/form-data"> | 
| jbe@0 | 11       Files: <input type="file" name="files" multiple> | 
| jbe@0 | 12       Comment: <input type="text" name="comment"> | 
| jbe@0 | 13       <input type="submit"> | 
| jbe@0 | 14     </form> | 
| jbe@0 | 15   </body> | 
| jbe@0 | 16 </html> |