<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
	dir="ltr">

<head>
    <meta charset="utf-8"/>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
    <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
    <meta name="description" content=""/>
    <meta name="author" content=""/>

    <meta http-equiv="Cache-Control" content="no-cache"/>
    <meta http-equiv="Pragma" content="no-cache"/>
    <meta http-equiv="Expires" content="Thu, 01 Jan 1970 00:00:00 GMT"/>

    <meta charset="UTF-8"/>
    <meta name="viewport" content="width=device-width, initial-scale=1.0"/>

    <title>Error Page</title>

    <!-- JAVASCRIPT START-->
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>

    <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.2/js/bootstrap.bundle.min.js"></script>

    <script src="https://cdnjs.cloudflare.com/ajax/libs/pdf.js/3.4.120/pdf.min.js"></script>

    <!-- <script type="text/javascript" th:src="@{/js/whitepapersObj.js}"></script> -->
    <script type="text/javascript" src="/js/script.js"></script>
    <!-- JAVASCRIPT END-->

    <!-- CSS START-->
    <link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.2/css/bootstrap.min.css" rel="stylesheet"/>
    <link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" rel="stylesheet"/>
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet"/>

    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet"/>

    <!-- Include Font Awesome -->
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"/>

    <link type="text/css" href="/css/null.css" rel="stylesheet"/>
    <link type="text/css" href="/css/subscribePage.css" rel="stylesheet"/>


    <!-- CSS END-->

    <link rel="shortcut icon" type="image/ico" href="/favicons/null_favicon.ico"/>

    <style>
        .navbar-custom .navbar-toggler {
            border: none;
            padding: 8px 12px;
            position: relative;
            z-index: 1040;
            background: none;
        }

        .navbar-custom .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid #0d6efd;
            outline-offset: 2px;
        }

        /* Hamburger button default state */
        .navbar-custom .navbar-toggler-open .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23333' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            width: 24px;
            height: 24px;
        }

        /* Hamburger button hover state */
        .navbar-custom .navbar-toggler-open:hover .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230d6efd' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Close button - hidden by default */
        .navbar-custom .navbar-toggler-close {
            display: none;
            border: none;
            background: none;
            padding: 8px 12px;
            font-size: 26px;
            color: #333;
            cursor: pointer;
            transition: color 0.2s ease, transform 0.2s ease;
        }

        .navbar-custom .navbar-toggler-close:hover {
            color: #0d6efd;
            transform: scale(1.15);
        }

        .navbar-custom .navbar-toggler-close:active {
            transform: scale(0.95);
        }

        /* Show close button when navbar is expanded */
        .navbar-custom .navbar-toggler-close.show {
            display: block !important;
        }

        /* Hide hamburger when navbar is expanded */
        .navbar-custom .navbar-toggler-open.hide {
            display: none !important;
        }

        .navbar-collapse {
            position: relative;
        }

        @media (min-width: 992px) {
            .navbar-custom .navbar-toggler-open,
            .navbar-custom .navbar-toggler-close {
                display: none !important;
            }
        }

        @media (max-width: 991px) {
            .navbar-collapse.show {
                padding-top: 12px;
            }
        }
    </style>

    <script>
        document.addEventListener('DOMContentLoaded', function() {
            const navbarCollapse = document.getElementById('navbarNav');
            const toggleOpen = document.querySelector('.navbar-toggler-open');
            const toggleClose = document.querySelector('.navbar-toggler-close');

            if (navbarCollapse && toggleOpen && toggleClose) {
                navbarCollapse.addEventListener('show.bs.collapse', function() {
                    toggleOpen.classList.add('hide');
                    toggleClose.classList.add('show');
                });

                navbarCollapse.addEventListener('hide.bs.collapse', function() {
                    toggleOpen.classList.remove('hide');
                    toggleClose.classList.remove('show');
                });
            }
        });
    </script>

    

</head>

<head>
<link rel="stylesheet" type="text/css" href="/css/prelogin.css" />
</head>

<body>
	<div class="starter-template">
		<p />
		<div
			class="d-flex text-center justify-content-center align-items-center container">
			<div class="card">
				<div class="card-body table-responsive text-nowrap p-5">
					<h3>Error Page</h3>
					<p>An error has occurred. Please try again.</p>
					<p />
					<div>
						<table
							class="table table-striped table-bordered table-hover table-condensed table-sm anotherhover small-table-header table-fixed rtl">
							<tr>
								<th class="text-center">Sr. #</th>
								<th class="text-center">Error Message</th>
							</tr>
							<tr>
								<td class="text-center">1</td>
								<td>No static resource sitemap.xml.</td>
							</tr>
						</table>
					</div>
					<div>
						<button class="btn btn-secondary" onclick="window.history.back();">Go
							Back</button>
					</div>

				</div>

			</div>
		</div>
	</div>
</body>

</html>