-
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
9663574
commit 8a3c846
Showing
1 changed file
with
50 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,50 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Access Denied</title> | ||
<style> | ||
body { | ||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; | ||
background-color: #f5f5f5; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
margin: 0; | ||
padding: 20px; | ||
} | ||
.container { | ||
background-color: white; | ||
padding: 2.5rem; | ||
border-radius: 8px; | ||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); | ||
max-width: 500px; | ||
text-align: center; | ||
} | ||
h1 { | ||
color: #333; | ||
margin-bottom: 1.5rem; | ||
} | ||
p { | ||
color: #666; | ||
line-height: 1.6; | ||
margin: 0; | ||
} | ||
a { | ||
color: #1db954; | ||
text-decoration: none; | ||
} | ||
a:hover { | ||
text-decoration: underline; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<h1>Access Denied</h1> | ||
<p>Sorry, you do not have access to the app. Please send me your Spotify associated email to <a href="mailto:keqing.hong@yahoo.com">keqing.hong@yahoo.com</a> so I can add you the app.</p> | ||
</div> | ||
</body> | ||
</html> |