*app.component.ts* ```js import { Component } from '@angular/core'; import { FormFieldTypes } from '@aws-amplify/ui-components'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'], }) export class AppComponent { formFields: FormFieldTypes; constructor() { this.formFields = [ { type: "email", label: "Custom Email Label", placeholder: "Custom email placeholder", inputProps: { required: true, autocomplete: "username" }, }, { type: "password", label: "Custom Password Label", placeholder: "Custom password placeholder", inputProps: { required: true, autocomplete: "new-password" }, }, { type: "phone_number", label: "Custom Phone Label", placeholder: "Custom phone placeholder", }, ]; } } ``` *app.component.html* ```html ```