downloadPage.html 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. .filename{
  30. word-break: break-word;
  31. }
  32. </style>
  33. </head>
  34. <body>
  35. <div class="bar"></div>
  36. <br>
  37. <div class="container">
  38. <h5>{{hostname}} File Sharing</h5>
  39. <h3 class="filename">{{filename}}</h3>
  40. <div class="row">
  41. <div class="one-half column">
  42. <table class="u-full-width">
  43. <thead>
  44. <tr>
  45. <th>Property</th>
  46. <th>Value</th>
  47. </tr>
  48. </thead>
  49. <tbody>
  50. <tr>
  51. <td>MIME Type</td>
  52. <td>{{mime}}</td>
  53. </tr>
  54. <tr>
  55. <td>File Extension</td>
  56. <td>{{ext}}</td>
  57. </tr>
  58. <tr>
  59. <td>File Size</td>
  60. <td>{{size}}</td>
  61. </tr>
  62. <tr>
  63. <td>Last Modification Time</td>
  64. <td>{{modtime}}</td>
  65. </tr>
  66. </tbody>
  67. </table>
  68. <a href="{{downloadurl}}"><button class="button-primary">Download</button></a>
  69. <br><br>
  70. <p>Request File ID: {{reqid}}</p>
  71. <p>Request Timestamp: {{reqtime}}</p>
  72. </div>
  73. <div class="one-half column">
  74. {{previewer}}
  75. <!-- <img style="pointer-events: none;" src=""> -->
  76. </div>
  77. </div>
  78. </div>
  79. <div class="footer">
  80. <div class="container">
  81. Cloud File Sharing Interface, Powered by <a style="color: white;" href="http://arozos.com">arozos</a>
  82. </div>
  83. </div>
  84. <script>
  85. </script>
  86. </body>
  87. </html>