mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-20 16:53:33 +00:00
39 lines
907 B
HTML
39 lines
907 B
HTML
<!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>
|
|
|
|
<div class="Uppy">
|
|
<form class="MyForm" action="/">
|
|
<input type="file" />
|
|
<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>
|