25 lines
547 B
PHTML
25 lines
547 B
PHTML
<?php if ($this->ajax) {?>
|
|
|
|
<h4 class="logout">Vous avez été déconnecté.</h4>
|
|
<h5 class="logout">Veuillez cliquer <a href="<?=$this->url?>">ici</a>
|
|
</h5>
|
|
|
|
<?php } else {?>
|
|
|
|
<?php echo $this->doctype()?>
|
|
<html>
|
|
<head>
|
|
<?=$this->headMeta();?>
|
|
<?=$this->headTitle();?>
|
|
</head>
|
|
<body>
|
|
<h4 class="logout">Vous avez été déconnecté.</h4>
|
|
<p><?=$this->message?></p>
|
|
<h5 class="logout">
|
|
Si cette page ne disparait pas au bout de <?=$this->refresh?> seconde(s),
|
|
veuillez cliquer <a href="<?=$this->url?>">ici</a>
|
|
</h5>
|
|
</body>
|
|
</html>
|
|
|
|
<?php }?> |