47 lines
No EOL
1.2 KiB
HTML
47 lines
No EOL
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Success</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background-color: #e5e7eb;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
flex-direction: column;
|
|
}
|
|
.logo {
|
|
width: 100px;
|
|
height: 100px;
|
|
object-fit: cover;
|
|
border-radius: 50%;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
margin-bottom: 1rem;
|
|
}
|
|
.icon {
|
|
font-size: 3rem;
|
|
color: #22c55e;
|
|
margin-bottom: 1rem;
|
|
}
|
|
h1 {
|
|
font-size: 2rem;
|
|
color: #1f2937;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
p {
|
|
font-size: 1.125rem;
|
|
color: #4b5563;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="icon">❌</div>
|
|
<h1>Something went wrong</h1>
|
|
<p>Try to link account again</p>
|
|
</body>
|
|
</html> |