Update TGBeta.ps1

This commit is contained in:
2025-01-25 01:02:35 -05:00
parent 9fbf0d59a5
commit cb9c82a40b

View File

@@ -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,6 +532,9 @@ 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="columns-container">
<!-- First column -->
<div class="checkbox-group column"> <div class="checkbox-group column">
<label> <label>
<input type="checkbox" id="selectAllOnboardCheckbox" onclick="toggleOnboardCheckboxes(this)"> <input type="checkbox" id="selectAllOnboardCheckbox" onclick="toggleOnboardCheckboxes(this)">
@@ -583,6 +593,21 @@ function GetHtmlContent {
<br><br> <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">