UNPKG

uppy

Version:

Extensible JavaScript file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Instagram, Dropbox, Google Drive, S3 and more :dog:

37 lines (33 loc) 910 B
<!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; } #upload-form { max-width: 400px; margin: auto; text-align: left; } </style> <main> <h1>Uppy is here</h1> <form id="upload-form" action="/"> <button type="button" id="pick-files">Pick Files</button><br> True ? <input type="checkbox" name="check_test" value="1" checked><br> Something: <input type="text" name="yo" value="1"><br> <input type="hidden" name="bla" value="12333"><br> <button type="submit">Submit</button> </form> </main> <link href="uppy.min.css" rel="stylesheet"> <script src="bundle.js"></script> </body> </html>