uppy/examples/bundled/index.html
2019-02-06 22:05:52 +03:00

32 lines
609 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: 50px;
text-align: center;
}
#upload-form {
max-width: 600px;
margin: auto;
text-align: left;
}
</style>
<main>
<h1>Uppy</h1>
<form id="upload-form" action="/">
<input type="file">
<button type="submit">Upload</button>
</form>
</main>
<script src="index.js"></script>
</body>
</html>