infoUI.php 977 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <script src="../script/jquery.min.js"></script>
  6. <link rel="stylesheet" href="../script/tocas/tocas.css">
  7. <script type='text/javascript' src="../script/tocas/tocas.js"></script>
  8. <script type='text/javascript' src="../script/ao_module.js"></script>
  9. <title>7z File Manager</title>
  10. <style>
  11. body{
  12. background-color:white
  13. }
  14. .ts.form .inline.field label {
  15. min-width: 50%;
  16. }
  17. .ts.basic.dropdown, .ts.form select {
  18. max-width: 50%;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <br>
  24. <div class="ts container">
  25. <h3>File information</h3>
  26. <br>File name: <?php echo $_GET["file"];?>
  27. <br>File size: <?php echo filesize($_GET["file"]);?>b
  28. <br><button class="ts basic button" style="width:45%" onclick="f_close()">Cancel</button>
  29. </div>
  30. </body>
  31. <script>
  32. function f_close(){
  33. if(ao_module_virtualDesktop){
  34. ao_module_close();
  35. }else{
  36. ts('#modal').modal('hide');
  37. }
  38. }
  39. </script>
  40. </html>