A reference to a <ng-template> tag that if set will override this component's template. Use like so:
<ng-template>
<ng-template #customTemplate> // custom HTML with login form </ng-template>
Then pass customTemplate to the login-form component like so [customTemplate]="customTemplate"
login-form
[customTemplate]="customTemplate"
Generated using TypeDoc
A reference to a
<ng-template>
tag that if set will override this component's template. Use like so:<ng-template #customTemplate> // custom HTML with login form </ng-template>
Then pass customTemplate to the
login-form
component like so[customTemplate]="customTemplate"