mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
19 lines
505 B
Plaintext
19 lines
505 B
Plaintext
@page
|
||
@model IndexModel
|
||
@{
|
||
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>
|
||
</div>
|
||
|
||
<partial name="_LoadingWheel" model="Model" />
|
||
<partial name="_IndexLoggedIn" model="Model" />
|
||
} |