mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-19 01:24:18 +00:00
27 lines
591 B
HTML
27 lines
591 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Uppy example: XHRUpload to a single endpoint</title>
|
|
</head>
|
|
<body>
|
|
<style>
|
|
main {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
}
|
|
h1 { text-align: center }
|
|
</style>
|
|
<main>
|
|
<div>
|
|
<h1>files[]</h1>
|
|
<div id="app"></div>
|
|
</div>
|
|
</main>
|
|
|
|
<link href="uppy.min.css" rel="stylesheet">
|
|
<script src="bundle.js"></script>
|
|
</body>
|
|
</html>
|