srcLicense.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <!DOCTYPE html>
  2. <head>
  3. <title>ArozOS Licenses</title>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0 user-scalable=no">
  6. <link rel="stylesheet" href="../../script/semantic/semantic.min.css">
  7. <script type="text/javascript" src="../../script/jquery.min.js"></script>
  8. <script type="text/javascript" src="../../script/semantic/semantic.min.js"></script>
  9. </head>
  10. <body>
  11. <div class="ui container">
  12. <br>
  13. <div class="ui stackable grid">
  14. <div class="eight wide column">
  15. <h3 class="ui header">
  16. ArozOS - General purpose cloud desktop platform
  17. <div class="sub header">Copyright (C) 2021 tobychui</div>
  18. </h3>
  19. <p>
  20. <br>
  21. This program is free software: you can redistribute it and/or modify <br>
  22. it under the terms of the GNU General Public License version 3 as <br>
  23. published by the Free Software Foundation.
  24. <br>
  25. This program is distributed in the hope that it will be useful, <br>
  26. but WITHOUT ANY WARRANTY; without even the implied warranty of <br>
  27. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the <br>
  28. GNU General Public License for more details.
  29. <br>
  30. You should have received a copy of the GNU General Public License <br>
  31. along with this program. If not, see <a target="_blank" href="https://www.gnu.org/licenses/">https://www.gnu.org/licenses/</a>.
  32. </p>
  33. </div>
  34. <div class="eight wide column">
  35. <textarea id="license" style="font-size: 90%; font-family: monospace, monospace; width: 100%; height:70vh; border: 1px solid #dedede; background-color: #fafafa;" readonly="true">
  36. </textarea>
  37. </div>
  38. </div>
  39. </div>
  40. <br><br>
  41. <script>
  42. $("#license").load("../info/gpl-3.0.txt");
  43. </script>
  44. </body>
  45. </html>