Skip to content

Commit

Permalink
Create auth-success.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Phillweston authored Apr 13, 2024
1 parent cf59487 commit 92751f5
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions auth-success.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<!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 {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
}
.message-box {
text-align: center;
padding: 20px;
border-radius: 5px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
background: #fff;
border: 1px solid #ddd;
}
button {
padding: 10px 20px;
margin-top: 20px;
font-size: 16px;
cursor: pointer;
background-color: #ff7657;
color: white;
border: none;
border-radius: 5px;
}
button:hover {
background-color: #ff7657;
}
</style>
</head>
<body>
<div class="message-box">
<h1>Authentication Successful</h1>
<p>You can now close this popup window.</p>
<button onclick="window.close();">Close Window</button>
</div>
</body>
</html>

0 comments on commit 92751f5

Please sign in to comment.