PHP/JavaScript Uploader
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
uploads/index.html

39 lines
1.1 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Drag and Drop Multiple File Upload</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.upload-container {
width: 300px;
padding: 20px;
border: 2px dashed #ccc;
text-align: center;
cursor: pointer;
}
.upload-container.dragover {
background-color: #f0f0f0;
}
</style>
</head>
<body>
<div class="upload-container" id="uploadContainer">
Drag and drop image files here or click to select files
<input type="file" id="fileInput" style="display: none;" accept="image/*" multiple>
</div>
<script src="./assets/js/uploading.js"></script>
<noscript>
<h1>Error! :</h1>
<p>This website requires JavaScript to function properly.</p>
</noscript>
</body>
</html>