mediamanager/MediaManager/Pages/Index.cshtml
Laura Hausmann 2ebfd26334
Initial public git commit
Signed-off-by: Laura Hausmann <laura@hausmann.dev>
2022-09-03 01:59:27 +02:00

13 lines
233 B
Plaintext

@page
@model IndexModel
@{
ViewData["Title"] = "Home";
}
<div class="text-center">
<h1 class="display-4">
Welcome, @Model.AuthorizedUser.Username
</h1>
<p>Please select a category in the header menu to continue.</p>
</div>