\x89PNG\r\n\x1a\n\x00\x00\x00\x0DIHDR\x00\x00\x00\x01\x00 \x00\x00\x01\x08\x06\x00\x00\x00\x1F\x15\xC4\x89\x00\x00\x00 \x0AIDATx\x9Ccb\x00\x00\x00\x06\x00\x03\x1A\x05\x9D\x00\x00 \x00\x00IEND\xAE\x42\x60\x82
| Path : /var/www/html/veridatapostgres/VeridataWebsite-v8/templates/ |
|
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
| Current File : /var/www/html/veridatapostgres/VeridataWebsite-v8/templates/404.html |
{% extends "base.html" %}
{% block meta_tags %}
<meta name="description" content="{{ _('Page not found - Veridata IT') }}">
<meta name="robots" content="noindex, follow">
{% endblock %}
{% block title %}{{ _('404 - Page Not Found') }}{% endblock %}
{% block content %}
<section class="error-page py-5">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-md-8 fade-in">
<div class="error-content">
<h1 class="display-1 text-primary mb-4">404</h1>
<h2 class="mb-4">{{ _('Page Not Found') }}</h2>
<p class="lead mb-5">{{ _('The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.') }}</p>
<div class="d-flex justify-content-center gap-3">
<a href="{{ url_for('index') }}" class="btn btn-primary">
<i class="fas fa-home me-2"></i>{{ _('Go Home') }}
</a>
<a href="{{ url_for('contact') }}" class="btn btn-outline-primary">
<i class="fas fa-envelope me-2"></i>{{ _('Contact Us') }}
</a>
</div>
</div>
</div>
</div>
</div>
</section>
{% endblock %}