Advertisement
Guest User

Voor teis. NIET OP KLAARKOMEN AUB!!

a guest
Nov 27th, 2014
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. <?php
  2.  
  3. if ( isset ( $_GET[ 'name' ] ) )
  4. {
  5. $name = htmlentities( $_GET[ 'name' ] );
  6. }
  7. else
  8. {
  9. $name = "The website";
  10. }
  11.  
  12. ?>
  13.  
  14. <!DOCTYPE html>
  15. <html lang="en">
  16. <head>
  17. <title><?=$name?> is down.</title>
  18.  
  19.  
  20. <style type="text/css">
  21. html, body {
  22. margin: 0;
  23. padding: 0;
  24. width: 100%;
  25. height: 100%;
  26. background:#F2F2FF;
  27. font-family:Arial,Verdana,FreeSans,Sans-serif;
  28. font-size:12px;
  29. }
  30.  
  31. #container {
  32. position:relative;
  33. margin: 0 auto;
  34. height: 500px;
  35. width: 516px;
  36. padding-top:35px;
  37. }
  38.  
  39. .logo {
  40. position:absolute;
  41. top: 35px;
  42. left:7px;
  43. }
  44. a img {
  45. border: none;
  46. }
  47.  
  48. .content {
  49. position: absolute;
  50. top:116px;
  51. background: url('img/img_bg.png') no-repeat;
  52. height: 350px;
  53. width: 516px;
  54. padding: 30px 32px 0;
  55. }
  56.  
  57.  
  58.  
  59. .content .hidden {
  60. visibility: hidden;
  61. }
  62.  
  63. .content h2 {
  64. font-size: 12px;
  65. margin: 35px 0 0 0;
  66. overflow:hidden;
  67. padding-left: 25px;
  68. *height:14px !important;
  69. *margin-top: 25px;
  70. }
  71.  
  72. .content h2#nl {
  73. background: url('img/img_spr_flags.png') no-repeat 0 1px;
  74. }
  75.  
  76. .content h2#gb {
  77. background: url('img/img_spr_flags.png') no-repeat 0 -13px;
  78. }
  79.  
  80. .content p {
  81. margin:0 30px 20px 0;
  82. line-height: 18px;
  83. }
  84. .content p span {
  85. margin-right: 2px;
  86. font-weight: bold;
  87.  
  88. }
  89. </style>
  90. </head>
  91. <body id="blockedPage">
  92. <div id="container">
  93. <div class="content">
  94. <h1><?=$name?> is down.</h1>
  95. <h2 id="gb"><?=$name?> is down.</h2>
  96. <p>We are "sorry" that we had to do this, otherwise it has a chance to became a great hotel with much players.</p>
  97. <h2 id="nl"><?=$name?> is down.</h2>
  98. <p>Het spijt ons dat we dit moesten doen, maar anders had het een kans gehad om een groot hotel met veel spelers te worden.</p>
  99. </div>
  100. </div>
  101. </body>
  102.  
  103. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement