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
@@ -0,0 +1,3 @@
<p>
friends works!
</p>
+16
View File
@@ -0,0 +1,16 @@
import {Component, OnInit} from '@angular/core';
@Component({
selector: 'app-social',
templateUrl: './social.component.html',
styleUrls: ['./social.component.scss'],
})
export class SocialComponent implements OnInit {
constructor() {
}
ngOnInit() {
}
}