Greetings! I have developed a straightforward Angular 12 project featuring a login page and a home page. Below is the code structure for your reference:
<div class="text-center" style="width: 100%">
<h1>home</h1>
</div>
In the home.component.ts file:
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'home',
templateUrl: './home.component.html',
styleUrls:['./home.component.css']
})
export class HomeComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}
For troubleshooting assistance with my Angular application, check out the screenshots linked below.
https://i.sstatic.net/mckOo.png
If you encounter issues after clicking the "LOG IN" button:
https://i.sstatic.net/CVNk4.png
https://i.sstatic.net/UUHwe.png
I have a basic understanding of Angular but seem to be encountering some roadblocks. Any help would be greatly appreciated!
Thank you in advance.