-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cf59487
commit 92751f5
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |