d.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <?php
  2. /**
  3. * Copyright 2021, 2024 5 Mode
  4. *
  5. * This file is part of Xslwiz.
  6. *
  7. * Xslwiz is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * Xslwiz is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with Xslwiz. If not, see <https://www.gnu.org/licenses/>.
  19. *
  20. * download.php
  21. *
  22. * Xslwiz download page.
  23. *
  24. * @author Daniele Bonini <my25mb@aol.com>
  25. * @copyrights (c) 2016, 2024 5 Mode
  26. */
  27. $ID = filter_input(INPUT_GET, "ID")??"";
  28. $ID = strip_tags($ID);
  29. ?>
  30. <!DOCTYPE html>
  31. <html lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
  32. <head>
  33. <meta name="viewport" content="width=device-width, initial-scale=1"/>
  34. <!--<?PHP echo(APP_LICENSE);?>-->
  35. <title><?PHP echo(APP_TITLE);?></title>
  36. <link rel="shortcut icon" href="/favicon.ico" />
  37. <meta name="description" content="Welcome to Xslwiz!"/>
  38. <meta name="keywords" content="xlswiz,xsl,generator,on,premise,solution"/>
  39. <meta name="robots" content="index,follow"/>
  40. <meta name="author" content="5 Mode"/>
  41. <script src="/js/jquery-3.6.0.min.js" type="text/javascript"></script>
  42. <script src="/js/bootstrap.min.js" type="text/javascript"></script>
  43. <script src="/js/common.js" type="text/javascript"></script>
  44. <script src="/js/htmlencode.js" type="text/javascript"></script>
  45. <script src="/js/index.js?r=<?PHP echo(time());?>" type="text/javascript"></script>
  46. <link href="/css/bootstrap.min.css" type="text/css" rel="stylesheet">
  47. <link href="/css/style.css?r=<?PHP echo(time());?>" type="text/css" rel="stylesheet">
  48. <script>
  49. function setFooterPos() {
  50. if (document.getElementById("footerCont")) {
  51. tollerance = 16;
  52. $("#footerCont").css("top", parseInt( window.innerHeight - $("#footerCont").height() - tollerance ) + "px");
  53. $("#footer").css("top", parseInt( window.innerHeight - $("#footer").height() - tollerance ) + "px");
  54. }
  55. }
  56. window.addEventListener("load", function() {
  57. setTimeout("setFooterPos()", 1000);
  58. });
  59. window.addEventListener("resize", function() {
  60. setTimeout("setFooterPos()", 1000);
  61. });
  62. </script>
  63. </head>
  64. <body>
  65. <div class="header" style="margin-top:18px;margin-bottom:18px;">
  66. <a href="http://xslwiz.5mode-foss.eu" target="_self" style="color:#000000; text-decoration: none;">&nbsp;&nbsp;&nbsp;<b>XSLWIZ<b></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://github.com/par7133/XSLWIZ" style="color:#000000;"><span style="color:#119fe2">on</span> github</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="mailto:posta@elettronica.lol" style="color:#000000;"><span style="color:#119fe2">for</span> feedback</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="tel:+39-331-4029415" style="font-size:13px;background-color:#15c60b;border:2px solid #15c60b;color:#000000;height:27px;text-decoration:none;">&nbsp;&nbsp;get support&nbsp;&nbsp;</a>
  67. </div>
  68. <form name="frmXslwiz" action="/" method="POST" target="_self" enctype="multipart/form-data">
  69. <div id="content" style="text-align:center">
  70. <br><br>
  71. <img src="/res/logo.png" style="width:450px;"><br>
  72. <br><br><br>
  73. <span style="font-size:24px;">Your ID is <i><b><?PHP echo($ID);?></b></i></span><br><br>
  74. <a href="/xsl-repo/<?PHP echo($ID);?>/index.xml"><?PHP echo($ID);?>/index.xml</a><br><br>
  75. <a href="/xsl-repo/<?PHP echo($ID);?>/index.xsl"><?PHP echo($ID);?>/index.xsl</a>
  76. <br><br><br><br><br>
  77. <div id="navbar" style="width:550px;clear:both;margin:auto;white-space:no-wrap;text-align:center">
  78. <button id="butStartOver" onclick="window.open('/','_self')" style="font-size:24px">Start Over</button>&nbsp;&nbsp;&nbsp;
  79. </div>
  80. <br><br><br><br>
  81. </div>
  82. </form>
  83. <div id="footerCont">&nbsp;</div>
  84. <div id="footer">
  85. <span style="background:#FFFFFF; opacity:0.7;">&nbsp;&nbsp; <a href="dd.html" class="aaa">Disclaimers</a>. A <a href="http://5mode.com" class="aaa">5 Mode</a> project and <a href="http://demo.5mode.com" class="aaa">WYSIWYG</a> system. Some rights reserved.</span>
  86. </div>
  87. </body>
  88. </html>