errors/error_general.php
changeset 0 3773f4677c40
equal deleted inserted replaced
-1:000000000000 0:3773f4677c40
       
     1 <html>
       
     2 <head>
       
     3 <title>Error</title>
       
     4 <style type="text/css">
       
     5 
       
     6 body {
       
     7 background-color:	#fff;
       
     8 margin:				40px;
       
     9 font-family:		Lucida Grande, Verdana, Sans-serif;
       
    10 font-size:			12px;
       
    11 color:				#000;
       
    12 }
       
    13 
       
    14 #content  {
       
    15 border:				#999 1px solid;
       
    16 background-color:	#fff;
       
    17 padding:			20px 20px 12px 20px;
       
    18 }
       
    19 
       
    20 h1 {
       
    21 font-weight:		normal;
       
    22 font-size:			14px;
       
    23 color:				#990000;
       
    24 margin: 			0 0 4px 0;
       
    25 }
       
    26 </style>
       
    27 </head>
       
    28 <body>
       
    29 	<div id="content">
       
    30 		<h1><?php echo $heading; ?></h1>
       
    31 		<?php echo $message; ?>
       
    32 	</div>
       
    33 </body>
       
    34 </html>