<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Authentication Successful</title>
<style>
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: #121212;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.container {
padding: 2rem;
}
.check-circle {
width: 64px;
height: 64px;
background-color: #10b981;
border-radius: 50%;
margin: 0 auto 1.5rem;
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.checkmark {
width: 32px;
height: 16px;
border-left: 3px solid white;
border-bottom: 3px solid white;
transform: rotate(-45deg);
margin-top: -4px;
}
h1 {
font-size: 1.5rem;
margin-bottom: 0.5rem;
}
p {
color: #a0aec0;
margin-top: 0;
}
</style>
</head>
<body>
<div class="container">
<div class="check-circle">
<div class="checkmark"></div>
</div>
<h1>Authentication successful</h1>
<p>This tab can be closed and you can return to your Terminal</p>
</div>
</body>
</html>