Remotely/Server/Pages/Index.cshtml

23 lines
626 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@page
@model IndexModel
@inject Microsoft.AspNetCore.Hosting.IWebHostEnvironment HostEnv
@{
ViewData["Title"] = "Home";
}
@if (!User.Identity.IsAuthenticated)
{
<partial name="_IndexNotLoggedIn" model="Model" />
}
else
{
<div id="motdAlert" class="alert alert-info alert-dismissible mr-5" role="alert" hidden>
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
<span id="motdContentSpan">@Model.Motd</span>
</div>
<partial name="_LoadingWheel" model="Model" />
<partial name="_IndexLoggedIn" model="Model" />
}