mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-11 10:10:25 +01:00
9152c3203f
Migrate the index.html to use tailwind instead of bootstrap * Extracted some more global styles to override the bootstrap styles for layout frontend. We should revisit this when we remove bootstrap. * Removed Angular specific logo for anon pages. Now uses the same css class as loading page to prevent duplicated assets.
38 lines
1.6 KiB
HTML
38 lines
1.6 KiB
HTML
<!doctype html>
|
|
<html lang="en" class="tw-h-full theme_light">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<title>Page not found | Bitwarden Web vault</title>
|
|
<meta name="description" content="404 Page Not Found" />
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="images/icons/apple-touch-icon.png" />
|
|
<link rel="icon" type="image/png" sizes="32x32" href="images/icons/favicon-32x32.png" />
|
|
<link rel="icon" type="image/png" sizes="16x16" href="images/icons/favicon-16x16.png" />
|
|
<link rel="mask-icon" href="images/icons/safari-pinned-tab.svg" color="#175DDC" />
|
|
<link rel="manifest" href="manifest.json" />
|
|
</head>
|
|
|
|
<body class="tw-min-h-screen !tw-min-w-0 tw-text-center tw-bg-background-alt tw-flex tw-flex-col">
|
|
<img class="new-logo-themed tw-m-8" alt="Bitwarden" />
|
|
|
|
<main class="tw-max-w-3xl tw-mx-auto tw-px-2 tw-my-4">
|
|
<h1 class="tw-mb-0 tw-h1">Sorry, this page isn't available.</h1>
|
|
|
|
<p class="tw-py-9 tw-mb-0">
|
|
The link you followed may be broken, or the page may have been removed. Try going back to
|
|
the previous page or see our
|
|
<a href="https://bitwarden.com/help/" target="_blank" rel="noreferrer">Help Center</a> for
|
|
more information.
|
|
</p>
|
|
|
|
<a href="/" class="tw-btn-secondary tw-inline-block">Go to your web vault</a>
|
|
</main>
|
|
<footer class="tw-mt-auto tw-h-40 tw-bg-primary-500 tw-flex tw-justify-center tw-items-center">
|
|
<i class="bwi bwi-shield tw-text-contrast tw-text-4xl"></i>
|
|
</footer>
|
|
</body>
|
|
</html>
|