Currently I have the following Input field:
`<h5>Answer</h5><span><a href="#" (click)="plainText(answer.value)">(show)
<input type="text" #answer (keyup)="asterisk(answer.value)" class="vg-form-control" placeholder="**********">`
I would like to convert the users text into asterisks as they are typing. So an input of test should look like **** on the UI.
Also, is it possible to reverse this with the "show" href tag?