mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-22 18:49:44 +00:00
26 lines
882 B
Plaintext
26 lines
882 B
Plaintext
<div class="stretch-container backdrop-panel">
|
|
<div class="title-bar-header">
|
|
@(this.ViewModel.Mod?.Name ?? string.Empty)
|
|
</div>
|
|
<div class="content">
|
|
<div class="message">
|
|
Are you sure you want to install the mod "<strong>@this.ViewModel.Mod?.Name</strong>"?
|
|
</div>
|
|
<div class="button-group">
|
|
<FluentButton Appearance="Appearance.Accent" OnClick="this.ViewModel.Confirm">
|
|
Continue
|
|
</FluentButton>
|
|
<FluentButton Appearance="Appearance.Neutral" OnClick="this.ViewModel.Cancel">
|
|
Cancel
|
|
</FluentButton>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@page "/mod-installation-confirmation/{Name}"
|
|
@inherits ViewBase<ModInstallationConfirmationView, ModInstallationConfirmationViewModel>
|
|
@code {
|
|
[Parameter]
|
|
public required string Name { get; init; }
|
|
}
|