notconfigured.tmpl 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <!doctype html>
  2. <html dir="ltr" lang="en-US">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="description" content="tCMS"/>
  6. <meta name="viewport" content="width=device-width">
  7. <link rel="icon" type="image/vnd.microsoft.icon" href="<?php echo "themed/$theme"; ?>/img/icon/favicon.ico" />
  8. <title>
  9. tCMS Requires Setup to Continue...
  10. </title>
  11. <style>
  12. body, html {
  13. font-size: 100%;
  14. margin: 0;
  15. }
  16. nav {
  17. padding: .5rem;
  18. height: 2rem;
  19. line-height: 2rem;
  20. font-size: 1.5rem;
  21. background-color: black;
  22. color: white;
  23. }
  24. section {
  25. display: block;
  26. margin: 1rem auto 0 auto;
  27. padding: 0 1rem;
  28. }
  29. #notice {
  30. display: table;
  31. padding: .5rem;
  32. background-color: rgba( 0, 0, 0, .75 );
  33. color: #00FF00;
  34. border-radius: .25rem;
  35. }
  36. #notice > img, #notice > span {
  37. margin: .25rem;
  38. display: table-cell;
  39. vertical-align: middle;
  40. }
  41. /* Styles for larger viewports */
  42. @media( min-width: 768px ) {
  43. section {
  44. width: 80%;
  45. }
  46. #notice {
  47. width: calc( 100% - 1rem);
  48. }
  49. }
  50. </style>
  51. </head>
  52. <body>
  53. <nav>
  54. <strong>tCMS Initial Setup</strong>
  55. </nav>
  56. <section>
  57. <div id="notice">
  58. <img alt="Icon indicating a missing file" src="<?php echo "themed/$theme"; ?>/img/mime/missing.gif" />
  59. <span>
  60. [INFO] This page is being displayed because the main configuration file is missing
  61. (or corrupted).
  62. </span>
  63. </div>
  64. <p>
  65. <strong>Note:</strong> Please see the
  66. <a href="https://tcms.troglodyne.net/index.php?nav=5&post=fileshare/manual/Chapter%2000-Introduction.post">
  67. tCMS Manual
  68. </a>
  69. for full instructions on how configure tCMS.
  70. <br /><br />
  71. Please <a href="sys/admin?app=config" alt="Login">Log In</a> and Configure tCMS.
  72. </p>
  73. </section>
  74. </body>
  75. </html>