mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
774 B
24 lines
774 B
<MudDialog> |
|
<DialogContent> |
|
<MudContainer> |
|
<MudHighlighter Class="mud-primary-text" |
|
Style="background-color: transparent; font-weight: bold" |
|
Text="Do you really want to sign out of Plex? All synchronized content will be removed."/> |
|
</MudContainer> |
|
</DialogContent> |
|
<DialogActions> |
|
<MudButton OnClick="Cancel">Cancel</MudButton> |
|
<MudButton Color="Color.Error" Variant="Variant.Filled" OnClick="Submit">Sign out</MudButton> |
|
</DialogActions> |
|
</MudDialog> |
|
|
|
@code { |
|
|
|
[CascadingParameter] |
|
MudDialogInstance MudDialog { get; set; } |
|
|
|
private void Submit() => MudDialog.Close(DialogResult.Ok(true)); |
|
|
|
private void Cancel() => MudDialog.Cancel(); |
|
|
|
} |