feat: initial login page

with separate file for future util endpoints,
also dummy sessions inteface
This commit is contained in:
efim
2023-10-29 08:26:35 +00:00
parent c19eb9104e
commit bde58a0eab
9 changed files with 273 additions and 29 deletions

View File

@@ -534,11 +534,76 @@ video {
--tw-backdrop-sepia: ;
}
.col-span-full {
grid-column: 1 / -1;
}
.flex {
display: flex;
}
.grid {
display: grid;
}
.h-full {
height: 100%;
}
.h-screen {
height: 100vh;
}
.grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-rows-\[auto\2c 1fr\] {
grid-template-rows: auto 1fr;
}
.flex-col {
flex-direction: column;
}
.place-content-center {
place-content: center;
}
.gap-4 {
gap: 1rem;
}
.gap-6 {
gap: 1.5rem;
}
.rounded {
border-radius: 0.25rem;
}
.border {
border-width: 1px;
}
.border-black {
--tw-border-opacity: 1;
border-color: rgb(0 0 0 / var(--tw-border-opacity));
}
.bg-amber-400 {
--tw-bg-opacity: 1;
background-color: rgb(251 191 36 / var(--tw-bg-opacity));
}
.bg-main-700\/25 {
background-color: rgb(194 65 12 / 0.25);
}
.p-4 {
padding: 1rem;
}
.text-xl {
font-size: 1.25rem;
line-height: 1.75rem;