Update TGBeta.ps1
This commit is contained in:
25
TGBeta.ps1
25
TGBeta.ps1
@@ -481,6 +481,13 @@ function GetHtmlContent {
|
||||
background-color: #dc3545;
|
||||
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 {
|
||||
border: 2px solid #444; /* Adjust border color */
|
||||
border-radius: 8px; /* Optional rounded corners */
|
||||
@@ -525,6 +532,9 @@ function GetHtmlContent {
|
||||
<div id="onboardTab" class="tab-content active">
|
||||
<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>
|
||||
|
||||
<div class="columns-container">
|
||||
<!-- First column -->
|
||||
<div class="checkbox-group column">
|
||||
<label>
|
||||
<input type="checkbox" id="selectAllOnboardCheckbox" onclick="toggleOnboardCheckboxes(this)">
|
||||
@@ -583,6 +593,21 @@ function GetHtmlContent {
|
||||
<br><br>
|
||||
</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;">
|
||||
<label for="n8nPassword">Enter n8n Password:</label><br>
|
||||
<input type="password" id="n8nPassword" class="password-input" placeholder="Enter N8N Password">
|
||||
|
||||
Reference in New Issue
Block a user