﻿<%@ Page ClassName="Error404Page" Language="C#" AutoEventWireup="true" CodeBehind="~/Error.aspx.cs" Inherits="Veeam.Backup.WebApp.ErrorPage" %>
<% Response.StatusCode = 404; %>

<!DOCTYPE html>
<html manifest="" class="error-page">
<head>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta charset="UTF-8">

    <title><%= GetTitle() %></title>
    <link rel="shortcut icon" href="<%= GetResourceFile("/favicon.ico")  %>" type="image/x-icon" />
    <%= BuildCssTags() %>
    <link rel="stylesheet" type="text/css" href="<%= GetResourceFile("/static/assets/errors.css") %>" />

</head>
<body>
    <div class="error-top-bar">
        <div class="error-top-bar-icon product-icon-24"><%= GetTitle() %></div>
    </div>
    <div class="error-body">
        <div class="error-icon error-404"></div>
        <div class="error-desc">
            <div class="error-desc-caption">Error 404: Page not found</div>
            <div class="error-desc-text">
                This might be caused by a misspelled or changed URL.<br />
                Requested page may also have been permanently removed.
            </div>
            
        </div>
        <div class="error-hr"></div>
        <div class="error-toolbar">
            <div>Here is what you can do:</div>
            <div class="error-links">
                <a href="#" class="error-link link-back" onclick="history.go(-1)">
                    <span class="icon"></span>
                    <span class="text">Go Back</span>
                </a>
                <a href="/index.aspx" class="error-link link-home">
                    <span class="icon"></span>
                    <span class="text">Go Home</span>
                </a>
            </div>
        </div>
    </div>
</body>
</html>
