index.html 873 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>File Upload</title>
  7. <link rel="stylesheet" href="./styles.css">
  8. <script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.1.1/crypto-js.min.js"></script>
  9. </head>
  10. <body>
  11. <div class="back-button">
  12. <button onclick="window.location.href='/static/license_info/license_info.html'">返回</button>
  13. </div>
  14. <div class="upload-container">
  15. <h2>Upload File</h2>
  16. <input type="file" id="fileInput" hidden>
  17. <div id="dropZone" class="drop-zone">
  18. <p>Drag & Drop a file here or click to select</p>
  19. </div>
  20. <button id="uploadButton" disabled>Upload</button>
  21. <p id="status"></p>
  22. </div>
  23. <script src="./script.js"></script>
  24. </body>
  25. </html>