<?php
/**
 * Simple "403 Forbidden" page
 *
 * @author    Wiktor Ros <w.ros@soniqsoft.pl>
 * @copyright 2020 SONIQSOFT
 * @version   Bridge v1.0
 */

/* Send HTTP header and display page */
header('HTTP/1.0 403 Forbidden');
header('Content-Language:·en');
?>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>403 - Forbidden</title>
    <meta name="description" content="403 - You do not have permission to access this resource">
    <meta name="author" content="SONIQSOFT, Wiktor Ros">
    <meta name="robots" content="none">
</head>
<body>
    <h1>Forbidden</h1>
    <p>You don't have permission to access this resource</p>
</body>
</html>
