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