2021-10-18 21:48:02 +01:00
|
|
|
@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" />
|
2021-10-18 21:48:02 +01:00
|
|
|
</div>
|
2021-10-23 22:16:37 +01:00
|
|
|
|
|
|
|
@section Scripts {
|
|
|
|
<script type="module" src="~/js/index.bundle.js"></script>
|
|
|
|
}
|