auth_complete.html•803 B
<!DOCTYPE html>
<html>
<head>
<title>Authorization Complete</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f5f5f5;
}
.container {
text-align: center;
padding: 2rem;
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
h1 {
color: #333;
margin-bottom: 1rem;
}
</style>
</head>
<body>
<div class="container">
<h1>Authorization Complete</h1>
<p>You can now return to the AI Agent</p>
</div>
</body>
</html>