Update TGBeta.ps1
This commit is contained in:
127
TGBeta.ps1
127
TGBeta.ps1
@@ -481,6 +481,13 @@ function GetHtmlContent {
|
|||||||
background-color: #dc3545;
|
background-color: #dc3545;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
.columns-container {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between; /* Space columns evenly */
|
||||||
|
gap: 20px; /* Add spacing between the two columns */
|
||||||
|
align-items: flex-start; /* Align columns to the top */
|
||||||
|
}
|
||||||
|
|
||||||
.column {
|
.column {
|
||||||
border: 2px solid #444; /* Adjust border color */
|
border: 2px solid #444; /* Adjust border color */
|
||||||
border-radius: 8px; /* Optional rounded corners */
|
border-radius: 8px; /* Optional rounded corners */
|
||||||
@@ -525,64 +532,82 @@ function GetHtmlContent {
|
|||||||
<div id="onboardTab" class="tab-content active">
|
<div id="onboardTab" class="tab-content active">
|
||||||
<h2>On-Boarding</h2>
|
<h2>On-Boarding</h2>
|
||||||
<h3 class="subtitle">This new way of deploying our stack will make it easier to be sure everything is deployed successfully</h3>
|
<h3 class="subtitle">This new way of deploying our stack will make it easier to be sure everything is deployed successfully</h3>
|
||||||
<div class="checkbox-group column">
|
|
||||||
<label>
|
<div class="columns-container">
|
||||||
<input type="checkbox" id="selectAllOnboardCheckbox" onclick="toggleOnboardCheckboxes(this)">
|
<!-- First column -->
|
||||||
Select All
|
<div class="checkbox-group column">
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
<input type="checkbox" name="setSVSPowerplan" id="SetSVSPowerplanCheckbox">
|
|
||||||
Set SVS Powerplan
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
<input type="checkbox" name="installSVSMSPModule" id="installSVSMSPModuleCheckbox">
|
|
||||||
Install SVSMSP Module
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
<input type="checkbox" name="installCyberQP" id="installCyberQPCheckbox">
|
|
||||||
Install CyberQP
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
<input type="checkbox" name="installSplashtop" id="installSplashtopCheckbox">
|
|
||||||
Install Splashtop
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
<input type="checkbox" name="installSVSHelpDesk" id="installSVSHelpDeskCheckbox">
|
|
||||||
Install SVSHelpDesk
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
<input type="checkbox" name="installSVSWatchtower" id="installSVSWatchtowerCheckbox">
|
|
||||||
Install SVSWatchtower
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
<input type="checkbox" name="installThreatLocker" id="installThreatLockerCheckbox">
|
|
||||||
Install ThreatLocker
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
<input type="checkbox" name="installRocketCyber" id="installRocketCyberCheckbox">
|
|
||||||
Install RocketCyber
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
<input type="checkbox" name="installDattoRMM" id="installDattoRMMCheckbox"
|
|
||||||
onclick="toggleDattoRMMOptions()">
|
|
||||||
Install DattoRMM
|
|
||||||
</label>
|
|
||||||
<div id="dattoRMMOptionsContainer" style="display:none; padding-left: 20px;">
|
|
||||||
<label>
|
<label>
|
||||||
<input type="checkbox" name="dattoRMMOption" value="inputVar">
|
<input type="checkbox" id="selectAllOnboardCheckbox" onclick="toggleOnboardCheckboxes(this)">
|
||||||
Copy Site Variables
|
Select All
|
||||||
</label>
|
</label>
|
||||||
<label>
|
<label>
|
||||||
<input type="checkbox" name="dattoRMMOption" value="rmm">
|
<input type="checkbox" name="setSVSPowerplan" id="SetSVSPowerplanCheckbox">
|
||||||
Install DRMM Agent
|
Set SVS Powerplan
|
||||||
</label>
|
</label>
|
||||||
<label>
|
<label>
|
||||||
<input type="checkbox" name="dattoRMMOption" value="exe">
|
<input type="checkbox" name="installSVSMSPModule" id="installSVSMSPModuleCheckbox">
|
||||||
Download.exe
|
Install SVSMSP Module
|
||||||
</label>
|
</label>
|
||||||
<br><br>
|
<label>
|
||||||
|
<input type="checkbox" name="installCyberQP" id="installCyberQPCheckbox">
|
||||||
|
Install CyberQP
|
||||||
|
</label>
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" name="installSplashtop" id="installSplashtopCheckbox">
|
||||||
|
Install Splashtop
|
||||||
|
</label>
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" name="installSVSHelpDesk" id="installSVSHelpDeskCheckbox">
|
||||||
|
Install SVSHelpDesk
|
||||||
|
</label>
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" name="installSVSWatchtower" id="installSVSWatchtowerCheckbox">
|
||||||
|
Install SVSWatchtower
|
||||||
|
</label>
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" name="installThreatLocker" id="installThreatLockerCheckbox">
|
||||||
|
Install ThreatLocker
|
||||||
|
</label>
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" name="installRocketCyber" id="installRocketCyberCheckbox">
|
||||||
|
Install RocketCyber
|
||||||
|
</label>
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" name="installDattoRMM" id="installDattoRMMCheckbox"
|
||||||
|
onclick="toggleDattoRMMOptions()">
|
||||||
|
Install DattoRMM
|
||||||
|
</label>
|
||||||
|
<div id="dattoRMMOptionsContainer" style="display:none; padding-left: 20px;">
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" name="dattoRMMOption" value="inputVar">
|
||||||
|
Copy Site Variables
|
||||||
|
</label>
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" name="dattoRMMOption" value="rmm">
|
||||||
|
Install DRMM Agent
|
||||||
|
</label>
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" name="dattoRMMOption" value="exe">
|
||||||
|
Download.exe
|
||||||
|
</label>
|
||||||
|
<br><br>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
<!-- Second column -->
|
||||||
|
<div class="checkbox-group column">
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" name="installtemp1" id="installtemp1Checkbox">
|
||||||
|
Installtemp1
|
||||||
|
</label>
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" name="installtemp2" id="installtemp2Checkbox">
|
||||||
|
Install temp2
|
||||||
|
</label>
|
||||||
|
<!-- Add more checkboxes here -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="n8nPasswordContainer" style="display: none;">
|
<div id="n8nPasswordContainer" style="display: none;">
|
||||||
<label for="n8nPassword">Enter n8n Password:</label><br>
|
<label for="n8nPassword">Enter n8n Password:</label><br>
|
||||||
<input type="password" id="n8nPassword" class="password-input" placeholder="Enter N8N Password">
|
<input type="password" id="n8nPassword" class="password-input" placeholder="Enter N8N Password">
|
||||||
|
|||||||
Reference in New Issue
Block a user