Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
dump
:
ia_send.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Upload de fichiers</title> <!-- Bootstrap CSS --> <link href="https://stackpath.bootstrapcdn.com/bootstrap/5.1.3/css/bootstrap.min.css" rel="stylesheet"> <style> #progressBar { width: 100%; background-color: #f3f3f3; } #progressBar div { width: 0; height: 30px; background-color: #4caf50; text-align: center; line-height: 30px; color: white; } </style> </head> <body> <div class="container mt-5"> <form id="uploadForm"> <div class="mb-3"> <label for="fileInput" class="form-label">Sélectionnez les fichiers</label> <input type="file" id="fileInput" class="form-control" multiple> </div> <div id="fileList" class="mb-3"></div> <button type="button" class="btn btn-primary" onclick="submitFiles()">Envoyer</button> </form> <div id="progressBar" class="mt-3"> <div id="progress"></div> </div> <div id="progressInfo" class="mt-3"></div> </div> <!-- Bootstrap JS and dependencies --> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/5.1.3/js/bootstrap.min.js"></script> <script src="script.js"></script> </body> </html>