index.html 631 B

1234567891011121314151617181920212223242526272829
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1" />
  6. <title>Uppy example: XHRUpload to a single endpoint</title>
  7. <style>
  8. main {
  9. display: flex;
  10. justify-content: space-around;
  11. align-items: center;
  12. }
  13. h1 {
  14. text-align: center;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <main>
  20. <div>
  21. <h1>files[]</h1>
  22. <div id="app"></div>
  23. </div>
  24. </main>
  25. <noscript>This app requires JavaScript.</noscript>
  26. <script src="./main.js" type="module"></script>
  27. </body>
  28. </html>