Files
SharepointToolbox-Web/Components/Pages/NotFound.razor
T

12 lines
323 B
Plaintext

@page "/not-found"
@attribute [Microsoft.AspNetCore.Authorization.AllowAnonymous]
@inject TranslationSource T
<PageTitle>@T["notfound.pagetitle"]</PageTitle>
<div class="no-profile">
<h2>@T["notfound.heading"]</h2>
<p>@T["notfound.body"]</p>
<a href="/" class="btn btn-primary">@T["notfound.back"]</a>
</div>