-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunsupported.html
53 lines (50 loc) · 2.26 KB
/
unsupported.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
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SignIt • Unsupported Browser</title>
<link rel="icon" type="image/png" sizes="192x192" href="/ico/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="512x512" href="/ico/android-chrome-512x512.png">
<link rel="apple-touch-icon" href="/ico/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="16x16" href="/ico/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="/ico/favicon-32x32.png">
<link rel="icon" href="/ico/favicon.ico">
<link rel="manifest" href="/ico/site.webmanifest">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/7eb79cf2e3.js" crossorigin="anonymous"></script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%; /* Ensure body takes up full height of viewport */
width: 100%; /* Ensure body takes up full width of viewport */
display: flex;
flex-direction: column; /* Ensure content flows from top to bottom */
justify-content: space-between; /* Avoid bottom space by stretching container */
background: linear-gradient(320deg, #4b0082, #6a5acd); /* Gradient background */
}
.container {
flex: 1; /* Take up the remaining space */
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}
</style>
</head>
<body>
<div class="container">
<h1><span style="margin: 0;" class="headinfo">This browser is</span> unsupported<span style="margin: 0;" class="headinfo">. <i class="fa-solid fa-circle-exclamation"></i></spam></h1>
</div>
<!-- Footer Section -->
<footer>
<p class="foottxt" style="margin-bottom: 0px;">Report a problem by clicking <a href="http://forms.gle/yk6g9SmfjwzvSPpN8" target="_blank">here <i class="fa-solid fa-link"></i></a>.</p>
<p class="foottxt" style="margin-top: 15px;">Copyright © <script>document.write(new Date().getFullYear());</script>, <b>SignIt</b>. All rights reserved.</p>
</footer>
<script src="https://cdn.jsdelivr.net/gh/voxxdevv/lmdesigns-watermark@main/watermarkme.min.js"></script>
</body>
</html>