I am working in an angular 5 application ,Here I am using Angular Material Design for UI .
Now I want to design a input filed as like in the image
I don't know how to add the "Change" label inside he input field .
Stackblitz : https://stackblitz.com/edit/angular-stacb4-5oaagd?file=app%2Fsnack-bar-overview-example.html
app.component.html
<mat-form-field class="col-sm-12">
<mat-label>Enter your email</mat-label>
<input matInput placeholder="email" required>
</mat-form-field>
Can anyone help me to solve this .

