add login component and auth service

This commit is contained in:
Roland Schneider
2025-11-10 17:33:05 +01:00
parent 327c641137
commit e09110346e
14 changed files with 218 additions and 350 deletions

View File

@@ -0,0 +1,8 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-home',
template: '<h1>Welcome to the Admin Panel!</h1>',
standalone: true,
})
export class HomeComponent {}