This repository has been archived on 2024-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
NG_2023_Kanban/Views/Home/Index.cshtml
Stanislav Mykhailenko 0d47f075db
Initial commit
2023-05-11 23:29:33 +03:00

14 lines
257 B
Text

@using NG_2023_Kanban.Entities
@{
var user = ViewData["Account"] as User;
}
@{
ViewData["Title"] = "Home Page";
}
<div class="text-center">
<h1 class="display-4">Welcome</h1>
<p>Kanban service</p>
<p>Logged in as @user.Id</p>
</div>