error.html 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" lang="zh-CN">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <meta name="viewport" content="width=device-width">
  6. <meta name='robots' content='noindex,follow' />
  7. <title>Comment Submission Failure</title>
  8. <style type="text/css">
  9. html {
  10. background: #f1f1f1;
  11. }
  12. body {
  13. background: #fff;
  14. color: #444;
  15. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  16. margin: 2em auto;
  17. padding: 1em 2em;
  18. max-width: 700px;
  19. -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
  20. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
  21. }
  22. h1 {
  23. border-bottom: 1px solid #dadada;
  24. clear: both;
  25. color: #666;
  26. font-size: 24px;
  27. margin: 30px 0 0 0;
  28. padding: 0;
  29. padding-bottom: 7px;
  30. }
  31. #error-page {
  32. margin-top: 50px;
  33. }
  34. #error-page p {
  35. font-size: 14px;
  36. line-height: 1.5;
  37. margin: 25px 0 20px;
  38. }
  39. #error-page code {
  40. font-family: Consolas, Monaco, monospace;
  41. }
  42. ul li {
  43. margin-bottom: 10px;
  44. font-size: 14px;
  45. }
  46. a {
  47. color: #0073aa;
  48. }
  49. a:hover,
  50. a:active {
  51. color: #00a0d2;
  52. }
  53. a:focus {
  54. color: #124964;
  55. -webkit-box-shadow:
  56. 0 0 0 1px #5b9dd9,
  57. 0 0 2px 1px rgba(30, 140, 190, .8);
  58. box-shadow:
  59. 0 0 0 1px #5b9dd9,
  60. 0 0 2px 1px rgba(30, 140, 190, .8);
  61. outline: none;
  62. }
  63. .button {
  64. background: #f7f7f7;
  65. border: 1px solid #ccc;
  66. color: #555;
  67. display: inline-block;
  68. text-decoration: none;
  69. font-size: 13px;
  70. line-height: 26px;
  71. height: 28px;
  72. margin: 0;
  73. padding: 0 10px 1px;
  74. cursor: pointer;
  75. -webkit-border-radius: 3px;
  76. -webkit-appearance: none;
  77. border-radius: 3px;
  78. white-space: nowrap;
  79. -webkit-box-sizing: border-box;
  80. -moz-box-sizing: border-box;
  81. box-sizing: border-box;
  82. -webkit-box-shadow: 0 1px 0 #ccc;
  83. box-shadow: 0 1px 0 #ccc;
  84. vertical-align: top;
  85. }
  86. .button.button-large {
  87. height: 30px;
  88. line-height: 28px;
  89. padding: 0 12px 2px;
  90. }
  91. .button:hover,
  92. .button:focus {
  93. background: #fafafa;
  94. border-color: #999;
  95. color: #23282d;
  96. }
  97. .button:focus {
  98. border-color: #5b9dd9;
  99. -webkit-box-shadow: 0 0 3px rgba(0, 115, 170, .8);
  100. box-shadow: 0 0 3px rgba(0, 115, 170, .8);
  101. outline: none;
  102. }
  103. .button:active {
  104. background: #eee;
  105. border-color: #999;
  106. -webkit-box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
  107. box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
  108. -webkit-transform: translateY(1px);
  109. -ms-transform: translateY(1px);
  110. transform: translateY(1px);
  111. }
  112. </style>
  113. </head>
  114. <body id="error-page">
  115. <p>
  116. <p><strong>ERROR</strong>: {$data.msg}.</p>
  117. </p>
  118. <p><a href='javascript:history.back()'>&laquo; Back</a></p>
  119. </body>
  120. </html>