This commit is contained in:
2026-06-02 17:39:58 +02:00
36 changed files with 2520 additions and 463 deletions
+5 -4
View File
@@ -1,10 +1,11 @@
@page "/not-found"
@attribute [Microsoft.AspNetCore.Authorization.AllowAnonymous]
@inject TranslationSource T
<PageTitle>Page not found — SharePoint Toolbox</PageTitle>
<PageTitle>@T["notfound.pagetitle"]</PageTitle>
<div class="no-profile">
<h2>Page not found</h2>
<p>The page you requested doesn't exist or has moved.</p>
<a href="/" class="btn btn-primary">Back to Home</a>
<h2>@T["notfound.heading"]</h2>
<p>@T["notfound.body"]</p>
<a href="/" class="btn btn-primary">@T["notfound.back"]</a>
</div>