index.html 452 B

12345678910111213141516
  1. <html>
  2. <head>
  3. <title>File Upload</title>
  4. </head>
  5. <body>
  6. <h1>Upload Sample</h1>
  7. <p>Upload PNG image</p>
  8. <form action="upload.cgi" method="post" enctype="multipart/form-data">
  9. <table cellspacing="10" width="100%">
  10. <tr><td><input type="file" size="64" name="image"></td></tr>
  11. <tr><td><input type="submit" name="upload" value="Send" onClick="return confirm('Are you sure?');"></td></tr>
  12. </table>
  13. </form>
  14. <img src="image.png" />
  15. </body>
  16. </html>