Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
KhawajaFashi authored Oct 15, 2024
2 parents dbf0c62 + 4a4f58f commit 2f7b7cc
Show file tree
Hide file tree
Showing 2 changed files with 527 additions and 339 deletions.
20 changes: 20 additions & 0 deletions src/css/login.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,26 @@ input {
z-index: 5;
}

#signup-success-message {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: rgba(0, 128, 0, 0.8); /* Green with translucency */
color: white;
font-size: 18px;
text-align: center;
padding: 20px 40px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
display: none; /* Hidden by default */
z-index: 1000;
}
.hidden {
display: none;
}


form {
display: flex;
align-items: center;
Expand Down
Loading

0 comments on commit 2f7b7cc

Please sign in to comment.