Selector/Selector.Web/Pages/Index.cshtml

14 lines
263 B
Plaintext
Raw Normal View History

@page
@model IndexModel
@{
ViewData["Title"] = "Home page";
}
<div class="text-center">
<h1 class="display-4">Welcome</h1>
2021-10-24 00:23:45 +01:00
<partial name="_LoginPartial" />
</div>
2021-10-23 22:16:37 +01:00
@section Scripts {
<script type="module" src="~/js/index.bundle.js"></script>
}