Create a login page

This commit is contained in:
Quentin Boyer 2023-05-20 16:53:07 +02:00
parent 062a749d59
commit db8cb0efff
7 changed files with 170 additions and 3 deletions

33
app/static/login.css Normal file
View file

@ -0,0 +1,33 @@
html,
body,
main {
height: 100%;
}
main {
display: flex;
align-items: center;
padding-top: 40px;
padding-bottom: 40px;
}
.form-signin {
max-width: 330px;
padding: 15px;
}
.form-signin .form-floating:focus-within {
z-index: 2;
}
#floatingUser {
margin-bottom: -1px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
#floatingPass {
margin-bottom: 10px;
border-top-right-radius: 0;
border-top-left-radius: 0;
}