24 lines
686 B
PHP
Executable file
24 lines
686 B
PHP
Executable file
<?php include(dirname(__FILE__).'/components/header.php'); ?>
|
|
|
|
<section id="mainsite" class="container">
|
|
<div class="row">
|
|
<div class="col-md-1"></div>
|
|
|
|
<div class="col-md-10">
|
|
|
|
<article class="card card-danger">
|
|
<h1 class="card-header"><i class="fa fa-fw fa-error"></i> <?php $plxShow->lang('ERROR'); ?></h1>
|
|
<div class="card-body">
|
|
<p><?php $plxShow->erreurMessage(); ?></p>
|
|
<p class="align-center"><a href="https://kazhnuz.space" class="btn btn-warning">Retourner à l'accueil</a></p>
|
|
</div>
|
|
</article>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-1"></div>
|
|
|
|
</div>
|
|
</section>
|
|
|
|
<?php include(dirname(__FILE__).'/components/footer.php'); ?>
|