Step 3: Password

Next
@code { [Parameter] public string Password { get; set; } [Parameter] public EventCallback PasswordChanged { get; set; } [Parameter] public EventCallback onSubmit { get; set; } public async Task SubmitRegistration() { await PasswordChanged.InvokeAsync(Password); await onSubmit.InvokeAsync(); } }