Implement Authentication with email + password (#343)

* Implement Login screen ui and add RequireNotAuth guard

* Perform login through auth/password-login flow
This commit is contained in:
Charles Bochet
2023-06-21 04:17:31 +02:00
committed by GitHub
parent e2d8c3a2ec
commit 8790369f72
18 changed files with 288 additions and 76 deletions

View File

@ -1,19 +0,0 @@
import styled from '@emotion/styled';
const StyledLogo = styled.div`
height: 40px;
width: 40px;
img {
height: 100%;
width: 100%;
}
`;
export function Logo(): JSX.Element {
return (
<StyledLogo>
<img src="icons/android/android-launchericon-192-192.png" alt="logo" />
</StyledLogo>
);
}