I have an input box created using Angular reactive forms
<input type="text" formControlName="OrgName" placeholder="Enter name" maxlength="60">
<p class="fieldRequired" *ngIf="showNameMSg">{{60-profileForm.value.OrgName.length}} characters remaining </p>
Currently, the limit is set to 60 characters and I am displaying it in a paragraph tag below the input box. How can I show the remaining number of characters with some kind of indicator inside the input box?
Even if the indicator is not implemented, I must at least display the available number of remaining characters.