19 lines
716 B
HTML
19 lines
716 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="icon" href="{{ url_for('basic.favicon') }}">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/root.css') }}">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/blocked_access.css') }}">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/fonts/PressStart2P.css') }}">
|
|
<title>Access Denied</title>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>403 - Access Denied</h1>
|
|
<p>Your IP address <span class="blocked-ip">{{ remote_addr }}</span> has been blocked from accessing this site.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|