Merge branch 'main/rendor-staging' into main/atys-live
[ryzomcore.git] / web / public_php / ams / templates / error.tpl
blob375815af37fb4ad95bd2cc702a5527bd1b64a3ae
1 <!DOCTYPE html>
2 <html lang="en">
3   <head>
4     <meta charset="utf-8">
5                 
6                 <style>
7                         *{
8                                 margin:0;
9                                 padding:0;
10                         }
11                         body{
12                                 font-family: 'Audiowide', cursive, arial, helvetica, sans-serif;
13                                 background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAUElEQVQYV2NkYGAwBuKzQAwDID4IoIgxIikAMZE1oRiArBDdZBSNMIXoJiFbDZYDKcSmCOYimDuNSVKIzRNYrUYOFuQgweoZbIoxgoeoAAcAEckW11HVTfcAAAAASUVORK5CYII=) repeat;
14                                 background-color:#212121;
15                                 color:white;
16                                 font-size: 18px;
17                                 padding-bottom:20px;
18                         }
19                         .error-code{
20                                 font-family: 'Creepster', cursive, arial, helvetica, sans-serif;
21                                 font-size: 200px;
22                                 color: white;
23                                 color: rgba(255, 255, 255, 0.98);
24                                 width: 50%;
25                                 text-align: right;
26                                 margin-top: 5%;
27                                 text-shadow: 5px 5px hsl(0, 0%, 25%);
28                                 float: left;
29                         }
30                         .not-found{
31                                 width: 47%;
32                                 float: right;
33                                 margin-top: 5%;
34                                 font-size: 50px;
35                                 color: white;
36                                 text-shadow: 2px 2px 5px hsl(0, 0%, 61%);
37                                 padding-top: 70px;
38                         }
39                         .clear{
40                                 float:none;
41                                 clear:both;
42                         }
43                         .content{
44                                 text-align:center;
45                                 line-height: 30px;
46                         }
47                         input[type=text]{
48                                 border: hsl(247, 89%, 72%) solid 1px;
49                                 outline: none;
50                                 padding: 5px 3px;
51                                 font-size: 16px;
52                                 border-radius: 8px;
53                         }
54                         a{
55                                 text-decoration: none;
56                                 color: #9ECDFF;
57                                 text-shadow: 0px 0px 2px white;
58                         }
59                         a:hover{
60                                 color:white;
61                         }
63                 </style>
64                 <title>Error</title>
65         </head>
66         <body>
67                 
68                 <p class="error-code">
69                         {$error_code}
70                 </p>
71                 {if $error_code eq "404"}
72                     <p class="not-found">{$title404}</p>
73                     <div class="clear"></div>
74                     <div class="content">
75                     {$error_message404}
76                 {else if $error_code eq "403"}
77                     <p class="not-found">{$title403}</p>
78                     <div class="clear"></div>
79                     <div class="content">
80                     {$error_message403}
81                 {/if}
82                       <br/><a href="index.php">{$go_home}</a> 
83                 </div>
85         </body>
86 </html>