downloadPage.html 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6. <title>{{hostname}} File Share</title>
  7. <link rel="stylesheet" href="script/skeleton/offline.css">
  8. <link rel="stylesheet" href="script/skeleton/normalize.css">
  9. <link rel="stylesheet" href="script/skeleton/skeleton.css">
  10. <script type="application/javascript" src="script/jquery.min.js"></script>
  11. <style>
  12. body{
  13. padding-bottom: 100px;
  14. }
  15. .bar{
  16. height: 12px;
  17. background-color: #1a1a1a;
  18. width: 100%;
  19. }
  20. .footer{
  21. position: fixed;
  22. bottom: 0px;
  23. height: 50px;
  24. width: 100%;
  25. background-color: #1a1a1a;
  26. padding: 20px;
  27. color: white;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <div class="bar"></div>
  33. <br>
  34. <div class="container">
  35. <h5>{{hostname}} File Sharing</h5>
  36. <h3>{{filename}}</h3>
  37. <div class="row">
  38. <div class="one-half column">
  39. <table class="u-full-width">
  40. <thead>
  41. <tr>
  42. <th>Property</th>
  43. <th>Value</th>
  44. </tr>
  45. </thead>
  46. <tbody>
  47. <tr>
  48. <td>MIME Type</td>
  49. <td>{{mime}}</td>
  50. </tr>
  51. <tr>
  52. <td>File Extension</td>
  53. <td>{{ext}}</td>
  54. </tr>
  55. <tr>
  56. <td>File Size</td>
  57. <td>{{size}}</td>
  58. </tr>
  59. <tr>
  60. <td>Last Modification Time</td>
  61. <td>{{modtime}}</td>
  62. </tr>
  63. </tbody>
  64. </table>
  65. <a href="{{downloadurl}}"><button class="button-primary">Download</button></a>
  66. <br><br>
  67. <p>Request File ID: {{reqid}}</p>
  68. <p>Request Timestamp: {{reqtime}}</p>
  69. </div>
  70. <div class="one-half column">
  71. {{previewer}}
  72. <!-- <img style="pointer-events: none;" src=""> -->
  73. </div>
  74. </div>
  75. </div>
  76. <div class="footer">
  77. <div class="container">
  78. Cloud File Sharing Interface, Powered by <a style="color: white;" href="http://arozos.com">arozos</a>
  79. </div>
  80. </div>
  81. <script>
  82. </script>
  83. </body>
  84. </html>