-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
47 lines (44 loc) · 1.14 KB
/
404.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
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>WhatsNewChat - 404</title>
<link rel="manifest" href="./manifest.json" />
<link rel="stylesheet" href="./css/app.css" />
</head>
<body>
<main>
<header>
<div class="logo-section">
<a href="/">
<img
src="./images/logo.png"
class="logo-img"
alt="WhatsNewChat Logo"
title="Start Chat Without Saving Number"
/>
</a>
<a href="/">
<span class="logo-text">WhatsNewChat</span>
</a>
</div>
</header>
<section
class="main-input"
style="height: auto; min-height: 0; max-height: auto"
>
<h1 class="mb-1">Page not found!</h1>
<hr />
<button
onclick="window.location.href = '/'"
type="submit"
class="submit-button"
>
Home
</button>
</section>
</main>
</body>
</html>