1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>Uppy :tl: playground</title>
- </head>
- <body>
- <style>
- main {
- display: flex;
- justify-content: space-around;
- align-items: center;
- flex-direction: column;
- }
- h1 { text-align: center }
- </style>
- <main>
- <h1>Uppy :tl: playground</h1>
- <hr>
- <form id="test-form" method="post" action="http://localhost:9967/test">
- <h2>leave a message</h2>
- <p>
- name:
- <input type="text" name="name">
- <p>
- message: <br>
- <textarea name="message"></textarea>
- <p>
- attachments:
- <input type="file">
- <p>
- <button type="submit">
- Upload
- </button>
- </form>
- <hr>
- </main>
- <link href="uppy.min.css" rel="stylesheet">
- <script src="bundle.js"></script>
- </body>
- </html>
|