infoUI.php 1014 B

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