@page
@using Remotely.Shared.Models
@inject Remotely.Server.Services.IApplicationConfig AppConfig
@model Remotely.Server.Pages.RemoteControlModel
@{
Layout = null;
}
Remotely Remote Control
@if (AppConfig.Theme == Remotely.Shared.Enums.Theme.Light)
{
}
else
{
}
@if (Model.RemotelyUser is not null)
{
switch (Model.RemotelyUser.UserOptions.Theme)
{
case Remotely.Shared.Enums.Theme.Light:
break;
case Remotely.Shared.Enums.Theme.Dark:
break;
default:
break;
}
}
else
{
if (AppConfig.Theme == Remotely.Shared.Enums.Theme.Light)
{
}
else
{
}
}
Disconnected from client.