Fixed reported CSS issues and added support for IE

This commit is contained in:
Jovan Strika 2019-04-19 14:27:40 -04:00
parent e773d69f54
commit 7305c11903
3 changed files with 1400 additions and 906 deletions

View File

@ -1,4 +1,9 @@
body { 
html, body {
width: 100%;
height: 100%;
}
body {
margin: 0; margin: 0;
padding: 0; padding: 0;
border: 0; border: 0;
@ -6,7 +11,7 @@
font-size: 13px; font-size: 13px;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
background-color: #d3d9d6; background-color: #d3d9d6;
overflow-y: hidden; /* overflow-y: hidden; */
} }
#container { #container {
@ -21,22 +26,79 @@
border-left: 1px solid #b7b7b7; border-left: 1px solid #b7b7b7;
padding: 0; padding: 0;
} }
.fullscreen.login #container {
-ms-grid-rows: 66px 24px 1fr 45px;
grid-template-rows: 66px 24px auto 45px;
-ms-grid-columns: 90px 1fr;
grid-template-columns: 90px repeat(auto-fit, minmax(900px, 1fr));
grid-template-areas:
"header header"
"nav nav"
"content content"
"footer footer";
}
.fullscreen.arg_hide #container {
-ms-grid-rows: 66px 24px 1fr 45px;
grid-template-rows: 66px 24px auto 45px;
-ms-grid-columns: 90px 1fr;
grid-template-columns: 90px repeat(auto-fit, minmax(900px, 1fr));
grid-template-areas:
"header header"
"nav nav"
"content content"
"footer footer";
}
.fullscreen.menu_stack #container {
-ms-grid-rows: 66px minmax(24px, max-content) 1fr 45px;
grid-template-rows: 66px minmax(24px, max-content) auto 45px;
-ms-grid-columns: 90px 1fr;
grid-template-columns: 90px repeat(auto-fit, minmax(900px, 1fr));
grid-template-areas:
"header header"
"nav nav"
"content content"
"footer footer";
}
.fullscreen #container { .fullscreen #container {
width: 100%; width: 100%;
min-width: 700px; min-width: 100%;
min-height: 0px; min-height: 0px;
border-right: 0px none #b7b7b7; border-right: 0px none #b7b7b7;
border-left: 0px none #b7b7b7; border-left: 0px none #b7b7b7;
}
height: calc(100% - 0px);
position: relative;
display: -ms-grid;
display: grid;
grid-gap: 0px;
grid-template-areas:
"header header"
"sidebar nav"
"sidebar content"
"sidebar footer";
-ms-grid-columns: 90px 1fr;
grid-template-columns: 90px auto;
-ms-grid-rows: 66px 24px 1fr 45px;
grid-template-rows: 66px 24px auto 45px;
}
.fulldesk #container { .fulldesk #container {
width: 100%; width: 100%;
height: 100%;
min-width: 700px; min-width: 700px;
min-height: 0px; min-height: 0px;
border-right: 0px none #b7b7b7; border-right: 0px none #b7b7b7;
border-left: 0px none #b7b7b7; border-left: 0px none #b7b7b7;
position: unset; position: unset;
position: relative;
display: -ms-grid !important;
display: grid !important;
grid-gap: 0px;
grid-template-areas: "content"!important;
-ms-grid-columns: 1fr;
grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)) !important;
-ms-grid-rows: 1fr;
grid-template-rows: repeat(auto-fit, minmax(100px, 1fr))!important;
} }
#masthead { #masthead {
@ -57,8 +119,11 @@
.fullscreen #masthead { .fullscreen #masthead {
width: 100%; width: 100%;
grid-area: header;
-ms-grid-column: 1;
-ms-grid-column-span: 2;
-ms-grid-row: 1;
} }
.fulldesk #masthead { .fulldesk #masthead {
display: none; display: none;
} }
@ -91,39 +156,26 @@
font-weight: bold; font-weight: bold;
} }
#page_content {
/*max-height: calc(100vh - 108px);*/
}
.fullscreen #page_content {
position: absolute;
top: 66px;
left: 90px;
right: 0px;
bottom: 0px;
}
.arg_hide #page_content {
left: 0px;
}
.fulldesk #page_content {
position: static;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
#page_leftbar { #page_leftbar {
height: calc(100vh - 66px); -ms-grid-column: 1;
-ms-grid-row: 2;
-ms-grid-row-span: 3;
/* height: calc(100vh - 66px); */
width: 90px; width: 90px;
position: absolute;
z-index: 1000; z-index: 1000;
background: #113962; background: #113962;
background: linear-gradient(to bottom, #104893 0%,#113962 100%); background: linear-gradient(to bottom, #104893 0%,#113962 100%);
color: white; color: white;
overflow-y: hidden;
display: none;
} }
.fullscreen #page_leftbar { .fullscreen #page_leftbar {
grid-area: sidebar;
display: block; display: block;
} }
.menu_stack #page_leftbar {
display: none;
}
.arg_hide #page_leftbar { .arg_hide #page_leftbar {
display: none; display: none;
} }
@ -131,14 +183,22 @@
display: none; display: none;
} }
#topbar { #topbar {
/* height: 24px; */
position: relative; position: relative;
grid-area: nav;
-ms-grid-column: 2;
-ms-grid-row: 2;
} }
.fulldesk #topbar { .fulldesk #topbar {
display: none; display: none;
} }
.menu_stack #topbar, .login #topbar, .arg_hide #topbar {
-ms-grid-column: 1;
-ms-grid-column-span: 2;
-ms-grid-row: 2;
}
.topbar_td { .topbar_td {
width: 100px; width: 100px;
@ -157,54 +217,95 @@
top: 3px; top: 3px;
right: 6px right: 6px
} }
#toggle2 {
#MainMenuSpan, #MainSubMenu, #MeshSubMenu, #UserSubMenu, #ServerSubMenu, #UserDummyMenu { cursor: pointer;
width: 100%; color: white;
height: 22px position: absolute;
top: 3px;
right: 26px;
display: none;
} }
.fullscreen #toggle2 {
display: block;
}
/* #UserDummyMenuSpan, */
#MainSubMenuSpan, #MeshSubMenuSpan, #UserSubMenuSpan, #ServerSubMenuSpan, #MainMenuSpan, #MainSubMenu, #MeshSubMenu, #UserSubMenu, #ServerSubMenu, #UserDummyMenu {
width: 100%;
height: 24px;
color: white;
background-color: #808080;
}
.menu_stack #UserDummyMenu {
display: none;
}
#MainMenuSpan { #MainMenuSpan {
display: table; display: table;
} }
.fullscreen #MainMenuSpan { .fullscreen #MainMenuSpan {
display: none; display: none;
} }
.fulldesk #MainMenuSpan { .fulldesk #MainMenuSpan {
display: none; display: none;
} }
.menu_stack #MainMenuSpan {
display: block;
}
#column_l { #column_l {
position: relative; position: relative;
float: left; float: left;
width: 930px; width: 100%;
box-sizing: border-box;
margin: 0; margin: 0;
padding: 0 15px; padding: 0 15px;
background-color: #fff; background-color: #fff;
/*max-height: calc(100vh - 111px);*/ /* max-height: calc(100vh - 151px); */
min-width: unset; min-width: unset;
} }
.room4submenu {
max-height: calc(100vh - 159px) !important;
}
.menu_stack.fullscreen.fulldesk #column_l {
-ms-grid-column: 1;
-ms-grid-row: 1;
-ms-grid-column-span: 2;
-ms-grid-row-span: 4;
}
.fullscreen #column_l { .fullscreen #column_l {
height: calc(100vh - 135px); -ms-grid-column: 2;
width: calc(100% - 30px); -ms-grid-row: 3;
grid-area: content;
width: unset;
/* height: calc(100vh - 111px);
width: calc(100% - 30px); */
overflow-y: auto; overflow-y: auto;
} }
.menu_stack.fullscreen #column_l, .login #column_l, .arg_hide #column_l {
-ms-grid-column: 1;
-ms-grid-column-span: 2;
-ms-grid-row: 3;
}
.fulldesk #column_l { .fulldesk #column_l {
height: 100%;
width: 100%; width: 100%;
height: unset; height: unset;
margin-left: unset; margin-left: unset;
overflow-y: unset; overflow-y: unset;
padding: 0; padding: 0;
max-height: unset; max-height: none;
-ms-grid-column: 1;
-ms-grid-row: 1;
} }
.fulldesk #column_l_bottomgap { .fulldesk #column_l_bottomgap {
display: none; display: none;
} }
.room4submenu {
min-height: calc(100vh - 159px);
}
#centralTable { #centralTable {
width: 100%; width: 100%;
} }
@ -254,6 +355,9 @@
} }
#footer { #footer {
-ms-grid-column: 2;
-ms-grid-row: 4;
grid-area: footer;
clear: both; clear: both;
overflow: auto; overflow: auto;
width: 100%; width: 100%;
@ -265,6 +369,11 @@
.fulldesk #footer { .fulldesk #footer {
display: none; display: none;
} }
.menu_stack.fullscreen #footer, .login #footer, .arg_hide #footer {
-ms-grid-column: 1;
-ms-grid-column-span: 2;
-ms-grid-row: 4;
}
/* Support for footer made with table */ /* Support for footer made with table */
#footer table { #footer table {
@ -315,6 +424,12 @@
text-decoration: none; text-decoration: none;
} }
#verifyEmailId2 {
color:yellow;
margin-left:3px;
cursor:pointer;
}
#dialog { #dialog {
z-index: 1000; z-index: 1000;
background-color: #EEE; background-color: #EEE;
@ -332,6 +447,18 @@
background-color: #003366; background-color: #003366;
color: #FFF; color: #FFF;
border-radius: 5px 5px 0 0; border-radius: 5px 5px 0 0;
margin-bottom: 6px;
}
#id_dialogclose {
float: right;
padding: 3px;
margin-right: 3px;
cursor: pointer;
}
#id_dialogtitle {
padding: 5px;
} }
#dialogBody { #dialogBody {
@ -360,14 +487,63 @@
padding:10px; padding:10px;
} }
#dialog2, #dialog3 { #dialog2, #dialog3, #dialog7 {
margin: auto;
margin: 3px; margin: 3px;
} }
#d3uploadMode, #d3localFile {
float:right;
width:260px;
}
#d3serveraction {
width: 100%;
background-color: #d3d9d6;
text-align: left;
padding: 3px;
}
#d3serverfiles {
width: 100%;
height: 150px;
background-color: white;
padding: 2px;
border: 1px solid gray;
overflow-y: scroll;
}
#d7bitmapquality, #d7bitmapquality, #d7bitmapscaling, #d7framelimiter, #d7desktopmode {
float: right;
width: 200px;
height: 20px;
}
#dialog7 h4 {
width:100%;
border-bottom: 1px solid gray;
}
#d7meshkvm div, #d7amtkvm div, #d3upload, #d3localmode {
margin:3px 0 3px 0;
display: flex;
justify-content: space-between;
}
#d7otherset {
display: block;
border: 1px solid #666;
width: 200px;
height: 60px;
overflow-y: scroll;
background-color: white;
}
#idx_dlgButtonBar { #idx_dlgButtonBar {
padding: 10px; padding: 10px;
margin-bottom: 20px; margin-bottom: 5px;
overflow: auto;
float: right;
} }
#idx_dlgCancelButton { #idx_dlgCancelButton {
@ -398,7 +574,7 @@
#idx_deskFullBtn2 { #idx_deskFullBtn2 {
float: left; float: left;
font-size: large; font-size: 16px;
cursor: pointer; cursor: pointer;
display: none; display: none;
} }
@ -543,6 +719,14 @@
font-size: 10px; font-size: 10px;
} }
#p2AccountActions .mL {
margin-left: 40px;
}
#p2ServerActions .mL {
margin-left: 40px;
}
.newMeshBtn { .newMeshBtn {
background: url(../images/icon-addnew.png) no-repeat 0px 0px; background: url(../images/icon-addnew.png) no-repeat 0px 0px;
height: 12px; height: 12px;
@ -552,10 +736,14 @@
padding-left: 15px; padding-left: 15px;
} }
#p2noMeshFound, #p2ServerActionsBackup, #p2ServerActionsRestore, #p2ServerActionsVersion, #p2ServerActionsErrors, #serverStats { #p2noMeshFound, #serverStats {
margin-left:40px; margin-left:40px;
} }
#p2ServerActionsBackup, #p2ServerActionsRestore, #p2ServerActionsVersion, #p2ServerActionsErrors {
margin-left:0px;
}
.pTable { .pTable {
width: 100%; width: 100%;
height: 24px; height: 24px;
@ -580,7 +768,7 @@
} }
#p3events { #p3events {
height: calc(100vh - 243px); height: calc(100vh - 245px);
overflow-y: scroll overflow-y: scroll
} }
@ -599,6 +787,10 @@
width: 230px; width: 230px;
} }
#p5toolbar {
width: 100%;
}
#p5filehead { #p5filehead {
width: 100%; width: 100%;
background-color: #d3d9d6; background-color: #d3d9d6;
@ -618,7 +810,7 @@
#p5filetable { #p5filetable {
width: 100%; width: 100%;
height: calc(100vh - 294px); height: calc(100vh - 295px);
overflow: auto; overflow: auto;
-webkit-user-select: none; -webkit-user-select: none;
position: relative; position: relative;
@ -631,6 +823,9 @@
-webkit-user-select: none; -webkit-user-select: none;
background-color: lightsteelblue; background-color: lightsteelblue;
} }
#p5PublicShare div {
padding: 4px;
}
#bigok { #bigok {
width: 256px; width: 256px;
@ -669,6 +864,12 @@
height: 60px; height: 60px;
} }
#serverMainStats {
height:calc(100vh - 251px);
max-height:calc(100vh - 251px);
width:100%
}
#p10BackButton, #p11BackButton { #p10BackButton, #p11BackButton {
float:left float:left
} }
@ -723,6 +924,14 @@
font-size: x-small; font-size: x-small;
} }
#dp10devicevalue {
width: 230px;
}
.fulldesk #p11 {
height: 100%;
}
#MainComputerImage { #MainComputerImage {
border-width: 0px; border-width: 0px;
height: 200px; height: 200px;
@ -763,7 +972,6 @@
top: 0; top: 0;
right: 0; right: 0;
border-left: 2px solid lightgray; border-left: 2px solid lightgray;
display: none;
} }
#DeskToolsRefreshButton { #DeskToolsRefreshButton {
float: right; float: right;
@ -774,6 +982,7 @@
a { a {
color: #036; color: #036;
text-decoration: underline; text-decoration: underline;
cursor: pointer;
} }
.i1 { .i1 {
@ -1071,11 +1280,20 @@ a {
background-color: #D3D9D6; background-color: #D3D9D6;
} }
/* .pTable .style14 {
float: left;
} */
.auto-style1 { .auto-style1 {
text-align: right; text-align: right;
background-color: #D3D9D6; background-color: #D3D9D6;
} }
#pTable .auto-style1 {
height: 100%;
float: right;
}
.icon2 { .icon2 {
float: left; float: left;
margin: 7px; margin: 7px;
@ -1215,7 +1433,7 @@ a {
.h1 { .h1 {
background-position: 0% 0%; background-position: 0% 0%;
width: 14px; width: 14px;
height: 100%; height: 24px;
/* fallback (Opera) */ /* fallback (Opera) */
/* Mozilla: */ /* Mozilla: */
/* Chrome, Safari:*/ /* Chrome, Safari:*/
@ -1229,13 +1447,13 @@ a {
height: 100%; height: 100%;
width: 20px; width: 20px;
float: right; float: right;
background-color: #ffffff background-color: #ffffff;
} }
.h2 { .h2 {
background-position: 0% 0%; background-position: 0% 0%;
width: 14px; width: 14px;
height: 100%; height: 24px;
/* fallback (Opera) */ /* fallback (Opera) */
/* Mozilla: */ /* Mozilla: */
/* Chrome, Safari:*/ /* Chrome, Safari:*/
@ -1362,6 +1580,10 @@ a {
/*filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");*/ /* Firefox 10+, Firefox on Android */ /*filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");*/ /* Firefox 10+, Firefox on Android */
filter: gray; /* IE6-9 */ filter: gray; /* IE6-9 */
-webkit-filter: grayscale(100%) opacity(60%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */ -webkit-filter: grayscale(100%) opacity(60%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
-moz-opacity: 0.60;
opacity:.60;
filter: alpha(opacity=60);
} }
.unselectable { .unselectable {
@ -1433,13 +1655,117 @@ a {
padding: 4px padding: 4px
} }
.deskareaicon {
cursor: pointer;
border: none;
float: right;
font-size: 130%;
margin-right: 4px;
}
.areaHead {
padding-left: 4px;
padding-top: 2px;
padding-bottom: 2px;
background: #C0C0C0;
}
.areaProgress {
background-color: gray;
}
.areaProgress div {
height: 2px;
width: 0%;
background-color:red;
}
.areaFoot {
padding-top: 2px;
padding-bottom: 2px;
background: #C0C0C0;
}
.toright2 {
float: right;
text-align: right;
padding-right: 4px;
}
#deskarea0 {
width: 100%;
padding: 0px;
padding: 0px;
margin-top: 0px;
}
.fulldesk #deskarea0 {
min-width: 100%;
min-height: 0px;
height: 100%;
position: relative;
display: -ms-grid;
display: grid;
grid-gap: 0px;
grid-template-areas:
"deskarea1"
"deskarea2"
"deskarea3"
"deskarea4";
/* grid-template-columns: 90px auto; */
grid-template-rows: 24px max-content auto max-content;
-ms-grid-columns: 1fr;
-ms-grid-rows: 24px max-content 1fr max-content;
}
#deskarea0 .mR {
margin-right: 3px;
}
#deskarea1 {
grid-area: deskarea1;
-ms-grid-column: 1;
-ms-grid-row: 1;
}
#deskarea2 {
grid-area: deskarea2;
background-color: gray;
-ms-grid-column: 1;
-ms-grid-row: 2;
}
#progressbar {
height:2px;
width:0%;
background-color:red;
}
#deskarea3x { #deskarea3x {
background: black; background: black;
text-align: center; text-align: center;
position: relative; position: relative;
overflow: hidden; overflow: hidden;
width: 100%;
max-height: calc(100vh - 296px); /* + 24px hight of submenu */
height: calc(100vh - 296px);
} }
.room4submenu #deskarea3x {
max-height: calc(100vh - 296px);
height: calc(100vh - 296px);
}
.fulldesk #deskarea3x {
grid-area: deskarea3;
max-height: none;
height: calc(100vh - 56px);
-ms-grid-column: 1;
-ms-grid-row: 3;
}
#DeskFocus { #DeskFocus {
overflow: hidden; overflow: hidden;
color: transparent; color: transparent;
@ -1449,17 +1775,27 @@ a {
} }
#DeskParent { #DeskParent {
overflow:hidden margin: 0;
overflow:hidden;
height: 100%;
width: 100%;
position: absolute;
right: 0;
top: 0;
} }
#Desk { #Desk {
overflow: hidden; overflow: hidden;
width: 100%; width: 100%;
-ms-touch-action: none; -ms-touch-action: none;
margin-left: 0px; position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
margin: auto;
} }
#deskToolsBar { #deskToolsBar {
position: absolute; position: absolute;
padding: 3px; padding: 3px;
@ -1471,6 +1807,27 @@ a {
cursor: pointer; cursor: pointer;
} }
#deskToolsArea {
position: absolute;
top: 26px;
left: 4px;
right: 4px;
bottom: 4px;
background-color: lightgray;
text-align: left;
}
#deskToolsHeader {
border-bottom: 1px solid darkgray;
padding: 3px;
}
#deskToolsHeader .colmn1 {
width: 50px;
padding-right: 5px;
float: left;
}
#DeskToolsProcesses { #DeskToolsProcesses {
overflow-y: scroll; overflow-y: scroll;
position: absolute; position: absolute;
@ -1486,6 +1843,22 @@ a {
background-color: #EFE8B6; background-color: #EFE8B6;
} }
#deskarea4 {
grid-area: deskarea4;
-ms-grid-column: 1;
-ms-grid-row: 4;
}
#DeskChatButton, #DeskNotifyButton, #DeskOpenWebButton {
float: right;
margin-top: 1px;
margin-right: 4px;
cursor: pointer;
}
#DeskClip, #DeskControlSpan, #specialkeylist {
margin-left:6px;
}
.userTableHeader { .userTableHeader {
border-bottom: 1pt solid lightgray; border-bottom: 1pt solid lightgray;
@ -1493,6 +1866,159 @@ a {
padding-bottom: 4px; padding-bottom: 4px;
} }
#deskkeys {
margin-left: 6px;
}
#p12BackButton {
float: left;
}
#termTable {
width: 100%;
padding: 0px;
padding: 0px;
margin-top: 0px;
}
#termarea3x {
background: black;
text-align: center;
height: 500px;
position: relative;
}
#Term {
background: black;
margin: 0;
padding: 0;
}
#p13toolbar {
width: 100%
}
#p13toolbar .areaHead {
border-bottom: 2px solid black;
}
#p13toolbar .areaHead2 {
width: 100%;
background-color: #d3d9d6;
text-align: left;
padding: 4px;
}
#p13toolbar .areaHead3 {
background-color:#E4E9E7;
height:28px;
}
#p13filetable {
width: 100%;
height: calc(100vh - 349px);
overflow: auto;
-webkit-user-select: none;
}
#p13bigok {
width: 256px;
overflow: hidden;
position: absolute;
left: 337px;
top: 200px;
text-align: center;
font-size: 1600%;
color: #AAAAAA;
}
#p13bigfail {
width: 256px;
overflow: hidden;
position: absolute;
left: 337px;
top: 200px;
text-align: center;
font-size: 1600%;
color: #AAAAAA;
}
#p14iframe {
width: 100%;
height: calc(100vh - 242px);
border: 0;
overflow: hidden;
}
#p13toolbarBottom, #p13toolbar {
width: 100%;
}
#consoleTable {
width: 100%;
padding: 0px;
padding: 0px;
margin-top: 0px;
}
#p15statetext {
padding: 4px;
height: 15px;
}
#p15agentConsole {
background: black;
margin: 0;
padding: 0;
color: lightgray;
width: 100%;
/* */
height: calc(100vh - 299px);
max-height: calc(100vh - 299px);
position: relative;
}
.menu_stack.fullscreen #p15agentConsole {
height: calc(100vh - 305px);
max-height: calc(100vh - 305px);
}
#p15coreName {
padding: 4px;
display: inline-block;
}
#p15agentConsoleText {
/* position: absolute; */
margin: 0;
padding: 0;
top: 0;
bottom: 0;
/* left: 0;
right: 0; */
overflow-y: scroll;
overflow-x: auto;
height: calc(100vh - 299px);
max-height: calc(100vh - 299px);
width: 930px;
}
.menu_stack.fullscreen #p15agentConsoleText {
width: calc(100vw - 30px);
height: calc(100vh - 305px);
max-height: calc(100vh - 305px);
}
.fullscreen #p15agentConsoleText {
width: calc(100vw - 120px);
}
#p16events, #p31events {
max-height: calc(100vh - 269px);
overflow-y: auto;
}
#p40 {
height:calc(100vh - 191px)
}
.viewSelector { .viewSelector {
width:32px; width:32px;
height:32px; height:32px;

File diff suppressed because it is too large Load Diff

View File

@ -11,18 +11,17 @@
<script keeplink=1 type="text/javascript" src="scripts/u2f-api.js"></script> <script keeplink=1 type="text/javascript" src="scripts/u2f-api.js"></script>
<title>{{{title}}} - Login</title> <title>{{{title}}} - Login</title>
</head> </head>
<body id="body" onload="if (typeof(startup) !== 'undefined') startup();" class="arg_hide"> <body id="body" onload="if (typeof(startup) !== 'undefined') startup();" class="arg_hide login">
<div id=container> <div id=container>
<div id=mastheadx></div>
<div id=masthead> <div id=masthead>
<div class="title">{{{title}}}</div> <div class="title">{{{title}}}</div>
<div class="title2">{{{title2}}}</div> <div class="title2">{{{title2}}}</div>
</div> </div>
<div id=page_content>
<div id=topbar class="noselect style3"> <div id=topbar class="noselect style3">
<div id=toggle title="Toggle full width" onclick="toggleFullScreen(1)">&harr;</div> <div id=toggle title="Toggle full width" onclick="toggleFullScreen(1)">&harr;</div>
</div> </div>
<div id=column_l style="height:calc(100vh - 111px)"> <div id=column_l>
<h1>Welcome</h1> <h1>Welcome</h1>
<div id="welcomeText" style="display:none">Connect to your home or office devices from anywhere in the world using <a href="http://www.meshcommander.com/meshcentral2">MeshCentral</a>, the real time, open source remote monitoring and management web site. You will need to download and install a management agent on your computers. Once installed, computers will show up in the &quot;My Devices&quot; section of this web site and you will be able to monitor them and take control of them.</div> <div id="welcomeText" style="display:none">Connect to your home or office devices from anywhere in the world using <a href="http://www.meshcommander.com/meshcentral2">MeshCentral</a>, the real time, open source remote monitoring and management web site. You will need to download and install a management agent on your computers. Once installed, computers will show up in the &quot;My Devices&quot; section of this web site and you will be able to monitor them and take control of them.</div>
<table id="centralTable" style=""> <table id="centralTable" style="">
@ -216,7 +215,7 @@
&nbsp;<a href=terms>Terms &amp; Privacy</a> &nbsp;<a href=terms>Terms &amp; Privacy</a>
</div> </div>
</div> </div>
</div>
</div> </div>
<div id=dialog style="display:none"> <div id=dialog style="display:none">
<div id=dialogHeader> <div id=dialogHeader>