-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path404.php
executable file
·30 lines (27 loc) · 895 Bytes
/
404.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
header("Pragma: no-cache");
header("Expires: 0");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-cache, must-revalidate");
include_once('ressources/class.templates.inc');
include_once('ressources/class.ldap.inc');
include_once('ressources/class.user.inc');
include_once('ressources/class.langages.inc');
include_once('ressources/class.sockets.inc');
$tpl=new templates();
$html="
<center style='width:350px;margin:70px'>
<table style='width:100%'>
<tr>
<td width=50%> </td>
<td width=1%><img src='/img/chiffre4.png'></td>
<td width=1%><img src='/img/chiffre0.png'></td>
<td width=1%><img src='/img/chiffre4.png'></td>
<td width=50%> </td>
</tr>
</table>
<div style='font-size:14px;text-align:center'>{THIS_PAGE_NOT_EXISTS}</div>
</center>
";
$tpl=new template_users('Artica-postfix 404',$html,1,0,0,0);
echo $tpl->web_page;