Skip to content

Commit

Permalink
fix: no access html
Browse files Browse the repository at this point in the history
  • Loading branch information
supermandee committed Dec 15, 2024
1 parent 9663574 commit 8a3c846
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions templates/no_access.html
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>

0 comments on commit 8a3c846

Please sign in to comment.