uppy/examples/bundled-example/index.html

36 lines
830 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>
<form id="upload-form" action="/">
<button type="button" id="uppyModalOpener">Select Files</button>
<br><br>
<input type="hidden" name="bla" value="12333">
<input type="text" name="yo" value="1">
<button type="submit">Submit</button>
</form>
</main>
<link href="uppy.min.css" rel="stylesheet">
<script src="bundle.js"></script>
</body>
</html>