-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path422.html
40 lines (39 loc) · 2.39 KB
/
422.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>VerifiedX 422 The change you wanted was rejected</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<link href="/favicon.ico" rel="shortcut icon" />
<link href="/apple-touch-icon.png" rel="apple-touch-icon" />
<script>
if (localStorage.getItem('color-theme') === 'dark' || (!('color-theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.classList.add('dark');
} else {
document.documentElement.classList.remove('dark')
}
</script>
<link href="/css/output.css" rel="stylesheet">
</head>
<body class="bg-gray-50 dark:bg-gray-800 h-screen">
<main class="bg-gray-50 dark:bg-gray-800 ">
<div class="flex flex-col justify-center items-center px-6 mx-auto xl:px-0 dark:bg-gray-800">
<div class="block md:max-w-lg m-20">
<img src="/logo/ApplicationLogo.png" alt="VerifiedX" class="block dark:hidden">
<img src="/logo/ApplicationLogo-dark.png" alt="VerifiedX" class="hidden dark:block">
</div>
<div class="text-center xl:max-w-4xl">
<h1 class="mb-4 text-7xl tracking-tight font-extrabold lg:text-9xl text-primary-600 dark:text-primary-500">422</h1>
<h1 class="mb-3 text-2xl font-bold leading-tight text-gray-900 sm:text-4xl lg:text-5xl dark:text-white">Unprocessable Entity</h1>
<p class="mb-5 text-base font-normal text-gray-500 md:text-lg dark:text-gray-400">Maybe you tried to change something you didn't have access to.</p>
<a href="/" class="text-white bg-primary-700 hover:bg-primary-800 focus:ring-4 focus:ring-primary-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center inline-flex items-center mr-3 dark:bg-primary-600 dark:hover:bg-primary-700 dark:focus:ring-primary-800">
<svg class="mr-2 -ml-1 w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M12.707 5.293a1 1 0 010 1.414L9.414 10l3.293 3.293a1 1 0 01-1.414 1.414l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 0z" clip-rule="evenodd"></path></svg>
Go back home
</a>
</div>
</div>
</main>
</body>