Remotely/Server/Components/Pages/Index.razor

27 lines
866 B
Plaintext

@page "/"
@inject IApplicationConfig AppConfig
@inject IDataService DataService
<AuthorizeView>
<NotAuthorized>
<div class="jumbotron">
<h3 class="display-4">Remotely</h3>
<p class="lead">
An open-source remote support solution.
</p>
<hr class="my-4">
<p class="lead">
<a class="btn btn-primary btn-lg me-2" href="Account/Login" role="button">Log In</a>
@if (AppConfig.MaxOrganizationCount < 0 || DataService.GetOrganizationCount() < AppConfig.MaxOrganizationCount)
{
<a class="btn btn-primary btn-lg" href="Account/Register" role="button">Register</a>
}
</p>
</div>
</NotAuthorized>
<Authorized>
<AuthorizedIndex />
</Authorized>
</AuthorizeView>