18 lines
549 B
PHP
18 lines
549 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<?php include 'includes/data.php'; ?>
|
|
</head>
|
|
<body>
|
|
<?php include 'includes/head.php'; ?>
|
|
|
|
<h1>401 Unauthorized</h1>
|
|
<p>Une authentification est nécessaire<br/>
|
|
pour accéder à la ressource.</p>
|
|
<a href="login.php" style="text-decoration:none"><input type="button" value="Connexion" /></a>
|
|
<a href="#" onclick="history.go(-1);" style="text-decoration:none"><input type="button" value="Page précédante" /></a>
|
|
|
|
<?php include 'includes/foot.php'; ?>
|
|
|
|
</body>
|
|
</html>
|