I am looking to incorporate a dynamic form where the configuration button triggers the switch from app-login-form
to login-config-form
.
app.component.html
<div class="container p-5">
<app-login-header></app-login-header>
<div class="load-form">
<login-config-form></login-config-form>
<app-login-form></app-login-form>
</div>
</div>
app.component.ts
import {
Component,
} from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
}