2022-09-12 00:28:12 +08:00
|
|
|
@inject HttpClient Client
|
2022-09-06 22:32:36 +08:00
|
|
|
@inject ISnackbar Snackbar
|
|
|
|
|
|
|
|
<MudDialog>
|
|
|
|
<TitleContent>
|
|
|
|
<MudText Typo="Typo.h6">
|
2024-03-08 18:42:56 -05:00
|
|
|
<MudIcon Icon="@Icons.Material.Filled.DeleteForever" Class="mr-3 mb-n1" />
|
2024-08-14 15:48:32 +01:00
|
|
|
(MarkupString)
|
|
|
|
(string)@Localizer["Delete User"]
|
2022-09-06 22:32:36 +08:00
|
|
|
</MudText>
|
|
|
|
</TitleContent>
|
|
|
|
<DialogContent>
|
|
|
|
<MudText>
|
2024-06-05 02:07:33 +01:00
|
|
|
@Localizer["Delete User Confirm"]
|
2022-09-06 22:32:36 +08:00
|
|
|
</MudText>
|
|
|
|
</DialogContent>
|
|
|
|
<DialogActions>
|
2024-08-14 15:48:32 +01:00
|
|
|
<MudButton OnClick="Cancel">@Localizer["Cancel"]</MudButton>
|
2023-11-11 21:04:11 +00:00
|
|
|
<MudButton Color="Color.Error" OnClick="DeleteUser">
|
2024-06-05 02:07:33 +01:00
|
|
|
<MudText>@Localizer["Delete"]</MudText>
|
2022-09-06 22:32:36 +08:00
|
|
|
</MudButton>
|
|
|
|
</DialogActions>
|
2022-09-12 00:33:58 +08:00
|
|
|
</MudDialog>
|