Index.cshtml 523 B

123456789101112131415161718192021222324252627
  1. @{
  2. Layout = null;
  3. }
  4. <!DOCTYPE html>
  5. <html>
  6. <head>
  7. <title>ImageConvertService</title>
  8. </head>
  9. <body>
  10. <div>
  11. <form action="/api/ConvertToWebp/AnyArchive" method="post" enctype='multipart/form-data'>
  12. In: <input type="file" name="file" />
  13. <br />
  14. Skip Suffix: <input type="text" name="skips" placeholder="PipeDelimited" />
  15. <br/>
  16. Out: <select name="format">
  17. <option selected>Fast7Z</option>
  18. <option>FastZip</option>
  19. </select>
  20. <br/>
  21. <input type="submit"/>
  22. </form>
  23. </div>
  24. </body>
  25. </html>