Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.shinegis.mu
/
htdocs
/
admin910
/
/srv/data/web/vhosts/www.shinegis.mu/htdocs/admin910/index.php
<?php session_start(); ?> <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>Espace d'administration - <?= $conf_name ?></title> <meta name="description" content="Espace d'administration - <?= $conf_name ?>" /> <link rel="icon" href="../img/favicon.png" type="image/x-icon" /> <meta name="Author" content="BHInternet.fr" /> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w==" crossorigin="anonymous" referrerpolicy="no-referrer" /> </head> <body class="fontBody"> <div class="overlay"></div> <section class="one"> <div class="container"> <div class="well-logo"> <img src="../assets/img/logo.png" class="img-responsive" alt="Logo login page" loading="lazy"> </div> <div class="row"> <div class="col-sm-4 col-sm-offset-4"> <div class="well"> <?php if (isset($_GET['err']) and $_GET['err'] == 1) echo "<div class='alert alert-danger'>Le login ou le mot de passe est incorrect, merci de réessayer.</div>"; ?> <form method="post" action="check-connection.php"> <div class="mb-3"> <label for="login" class="form-label">Login</label> <input type="text" id="login" name="login" placeholder='Login' title="login" class="form-control" autofocus> </div> <div class="mb-3"> <label for="password" class="form-label">Password</label> <input class="form-control" type="password" id="password" name="password" placeholder='Mot de passe' title="Mot de passe"> </div> <button type="submit" class="btn btn-primary">Se connecter</button> </form> <hr> <div class="text-center"> <a href='../' target="_blank">Retour sur le site</a> </div> </div> </div> </div> </div> </section> </body> </html>