add basic login, signup, navbar

This commit is contained in:
afazio1
2024-03-24 18:02:40 -04:00
parent f6202bfb79
commit fdb7b3a1ce
13 changed files with 129 additions and 20 deletions

View File

@@ -0,0 +1,9 @@
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
border: 3px solid #f1f1f1;
border-radius: 5px;
color: white;
}

View File

@@ -0,0 +1,20 @@
form {
display: flex;
flex-direction: column;
justify-content: center;
gap: 0.5rem;
}
main {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
h1 {
text-align: center;
}
.form-inputs {
display: flex;
flex-direction: column;
}