add basic admin panel

This commit is contained in:
Mikhail
2024-07-14 15:24:37 -04:00
parent 01f86a7d24
commit 367cd64b8e
11 changed files with 485 additions and 20 deletions

View File

@@ -0,0 +1,23 @@
@ -0,0 +1,23 @@ html, body {
margin: 0;
padding: 0;
height: 100%;
}
body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: url('/admin/assets/login.jpg') no-repeat center center fixed;
background-size: cover;
/* Center child horizontally*/
display: flex;
justify-content: center;
align-items: center;
}
.LoginBox {
background-color: white;
border-radius: 10px;
padding: 20px 20px 20px 20px;
}