index.html 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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: 100px;
  12. text-align: center;
  13. }
  14. .MyForm {
  15. max-width: 400px;
  16. margin: auto;
  17. text-align: initial;
  18. }
  19. </style>
  20. <main>
  21. <h1>Uppy is here</h1>
  22. <button id="uppyModalOpener">Choose Files</button>
  23. <button id="uppyModalOpener2">Choose Files</button>
  24. <div class="Uppy">
  25. <form class="MyForm" action="/">
  26. <input type="file" />
  27. <input type="checkbox" name="check_test" value="1" checked>
  28. <input type="hidden" name="bla" value="12333">
  29. <input type="text" name="yo" value="1">
  30. <button type="submit">Upload</button>
  31. <input type="submit">
  32. </form>
  33. </div>
  34. </main>
  35. <link href="uppy.min.css" rel="stylesheet">
  36. <script src="bundle.js"></script>
  37. </body>
  38. </html>