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