index.html 629 B

1234567891011121314151617181920212223242526272829303132
  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</title>
  7. </head>
  8. <body>
  9. <style>
  10. main {
  11. padding-top: 50px;
  12. text-align: center;
  13. }
  14. #upload-form {
  15. max-width: 600px;
  16. margin: auto;
  17. text-align: left;
  18. }
  19. </style>
  20. <main>
  21. <h1>Uppy</h1>
  22. <form id="upload-form" action="/">
  23. <input type="file" />
  24. <button type="submit">Upload</button>
  25. </form>
  26. </main>
  27. <script src="index.js" type="module"></script>
  28. </body>
  29. </html>