How do i get the value of an html input element in my component class?
For example, i want to get the username from this input element in my component class.
<div class="row">
<div class="input-field col s12">
<input id="username" type="text" class="validate" name="username">
<label for="username">Username</label>
</div>
</div>
Then i need the value in my component class:
export class HomepageComponent {
username = username;
}