feat(login): add login component and routing configuration

This commit is contained in:
Jan K9f 2025-01-19 20:05:24 +01:00
commit a54069f160
Signed by: jank
GPG key ID: 50620ADD22CD330B
7 changed files with 47 additions and 338 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 {
}