Files
Moonlight/Moonlight/Shared/Components/Alerts/DisabledAlert.razor
2023-07-02 02:16:44 +02:00

16 lines
629 B
Plaintext

@using Moonlight.App.Services
@using Moonlight.App.Services.Files
@inject ResourceService ResourceService
<div class="card card-flush w-lg-650px py-5">
<div class="card-body py-15 py-lg-20">
<div class="mb-14">
<img alt="Logo" src="@(ResourceService.Image("logolong.png"))" class="h-40px">
</div>
<h1 class="fw-bolder text-gray-900 mb-5"><TL>Your moonlight account is disabled</TL></h1>
<div class="fw-semibold fs-6 text-gray-500 mb-8">
<TL>Your moonlight account is currently disabled. But dont worry your data is still saved</TL>
</div>
</div>
</div>