Authinator/Pages/Index.cshtml
2023-06-01 06:14:24 +02:00

17 lines
467 B
Plaintext

@page
@using Authinator.Backend.Utils
@model IndexModel
@{
ViewData["Title"] = "Home";
}
<div class="text-center">
<h1 class="display-4">
Welcome
</h1>
<p>
This is the default landing page of <a href="@ApplicationInformation.Repository">@ApplicationInformation.Project</a>, a work in progress ASP.NET Core project by <a href="https://zotan.pw">~zotan</a>.
<br/>
Expect to see something more useful here once project development continues.
</p>
</div>