implemented routes and error messages in login page

This commit is contained in:
2026-03-24 23:55:53 +01:00
parent 6ec656fde1
commit 69c2991c54
19 changed files with 141 additions and 14 deletions
+3
View File
@@ -0,0 +1,3 @@
<p>
home works!
</p>
+9
View File
@@ -0,0 +1,9 @@
import {Component, OnInit} from '@angular/core';
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.scss'],
})
export class HomeComponent {
}