Create login route and protect routes (#3)

Co-authored-by: Phan Huy Tran <p.tran@neusta.de>
Reviewed-on: #3
Co-authored-by: ptran <huydw@proton.me>
Co-committed-by: ptran <huydw@proton.me>
This commit is contained in:
Huy
2024-12-18 09:27:44 +00:00
committed by Constantin Simonis
parent 3595348aee
commit f1f58b73c9
10 changed files with 56 additions and 60 deletions

View File

@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-login',
imports: [],
templateUrl: './login.component.html',
styleUrl: './login.component.css'
})
export class LoginComponent {
}