notconfigured.tmpl 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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="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. width: 100%;
  27. margin: 1rem auto 0 auto;
  28. }
  29. @media( min-width: 768px ) {
  30. section {
  31. width: 80%;
  32. }
  33. }
  34. #notice {
  35. display: table;
  36. padding: .5rem;
  37. background-color: rgba( 0, 0, 0, .75 );
  38. color: #00FF00;
  39. border-radius: .25rem;
  40. }
  41. #notice > img, #notice > span {
  42. margin: .25rem;
  43. display: table-cell;
  44. vertical-align: middle;
  45. }
  46. </style>
  47. </head>
  48. <body>
  49. <nav>
  50. <strong>tCMS Configuration <!--Wizard--></strong>
  51. <span style="float: right;">Step 1</span>
  52. </nav>
  53. <section>
  54. <div id="notice">
  55. <img alt="Icon indicating a missing file" src="img/mime/missing.gif" />
  56. <span>
  57. [INFO] This page is being displayed because sys/admin/config/main.json is missing
  58. (or corrupted).
  59. </span>
  60. </div>
  61. <p>
  62. Please see the
  63. <a href="https://tcms.troglodyne.net/index.php?nav=5&post=fileshare/manual/Chapter%2000-Introduction.post">
  64. tCMS Manual
  65. </a>
  66. for instructions on how configure tCMS.
  67. </p>
  68. </section>
  69. </body>
  70. </html>