1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>uppy</title>
- </head>
- <body>
- <style>
- main {
- padding-top: 100px;
- text-align: center;
- }
- .MyForm {
- max-width: 400px;
- margin: auto;
- text-align: initial;
- }
- </style>
- <main>
- <h1>Uppy is here</h1>
- <button id="uppyModalOpener">Choose Files</button>
- <button id="uppyModalOpener2">Choose Files</button>
- <div class="Uppy">
- <form class="MyForm" action="/">
- <input type="file" />
- <input type="checkbox" name="check_test" value="1" checked>
- <input type="hidden" name="bla" value="12333">
- <input type="text" name="yo" value="1">
- <button type="submit">Upload</button>
- <input type="submit">
- </form>
- </div>
- </main>
- <link href="uppy.min.css" rel="stylesheet">
- <script src="bundle.js"></script>
- </body>
- </html>
|