index.html 1009 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 :tl: playground</title>
  7. </head>
  8. <body>
  9. <style>
  10. main {
  11. display: flex;
  12. justify-content: space-around;
  13. align-items: center;
  14. flex-direction: column;
  15. }
  16. h1 { text-align: center }
  17. </style>
  18. <main>
  19. <h1>Uppy :tl: playground</h1>
  20. <hr>
  21. <form id="test-form" method="post" action="http://localhost:9967/test">
  22. <h2>leave a message</h2>
  23. <p>
  24. name:
  25. <input type="text" name="name">
  26. <p>
  27. message: <br>
  28. <textarea name="message"></textarea>
  29. <p>
  30. attachments:
  31. <input type="file">
  32. <p>
  33. <button type="submit">
  34. Upload
  35. </button>
  36. </form>
  37. <hr>
  38. </main>
  39. <link href="uppy.min.css" rel="stylesheet">
  40. <script src="bundle.js"></script>
  41. </body>
  42. </html>