23 lines
756 B
Plaintext
23 lines
756 B
Plaintext
@inject HttpClient Client
|
|
@inject ISnackbar Snackbar
|
|
|
|
<MudDialog>
|
|
<TitleContent>
|
|
<MudText Typo="Typo.h6">
|
|
<MudIcon Icon="@Icons.Material.Filled.LockReset" Class="mr-2" />
|
|
Reset user's password?
|
|
</MudText>
|
|
</TitleContent>
|
|
<DialogContent>
|
|
<MudText>
|
|
Do you really want to reset user <b>@User.Baid</b>'s password?<br />
|
|
This will remove the user's current password and user will have to register again.
|
|
</MudText>
|
|
</DialogContent>
|
|
<DialogActions>
|
|
<MudButton OnClick="Cancel">CANCEL</MudButton>
|
|
<MudButton Color="Color.Error" OnClick="ResetPassword">
|
|
<MudText>RESET</MudText>
|
|
</MudButton>
|
|
</DialogActions>
|
|
</MudDialog> |