2025-03-03 00:56:32 +01:00
|
|
|
@inherits Component
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-10-19 21:14:38 +02:00
|
|
|
<div class="panel">
|
|
|
|
|
<div class="vstack">
|
|
|
|
|
<div class="d-flex justify-content-center">
|
|
|
|
|
<div class="text-danger icon-size">⚠︎</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="d-flex justify-content-center">
|
|
|
|
|
<h3 class="text-danger">An error occured while loading a page</h3>
|
|
|
|
|
</div>
|
|
|
|
|
@if (!string.IsNullOrWhiteSpace(ErrorMessage))
|
|
|
|
|
{
|
|
|
|
|
<div class="d-flex justify-content-center">
|
|
|
|
|
<p>@ErrorMessage</p>
|
|
|
|
|
</div>
|
|
|
|
|
}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|