Update index.html
Browse files- index.html +6 -2
index.html
CHANGED
@@ -52,6 +52,10 @@
|
|
52 |
cursor: pointer;
|
53 |
font-weight: bold;
|
54 |
}
|
|
|
|
|
|
|
|
|
55 |
button:hover {
|
56 |
background-color: #2563eb;
|
57 |
}
|
@@ -93,8 +97,8 @@
|
|
93 |
<label for="model">Model:</label>
|
94 |
<input type="text" id="model" name="model" required placeholder="Model name (e.g. meta-llama/Meta-Llama-3.1-405B-Instruct)">
|
95 |
</div>
|
96 |
-
<div>
|
97 |
-
<label
|
98 |
<input type="checkbox" id="doWhatISay" name="doWhatISay">
|
99 |
</div>
|
100 |
<button type="submit">Generate Config</button>
|
|
|
52 |
cursor: pointer;
|
53 |
font-weight: bold;
|
54 |
}
|
55 |
+
.checkbox-container {
|
56 |
+
display: flex;
|
57 |
+
align-items: center;
|
58 |
+
}
|
59 |
button:hover {
|
60 |
background-color: #2563eb;
|
61 |
}
|
|
|
97 |
<label for="model">Model:</label>
|
98 |
<input type="text" id="model" name="model" required placeholder="Model name (e.g. meta-llama/Meta-Llama-3.1-405B-Instruct)">
|
99 |
</div>
|
100 |
+
<div class="checkbox-container">
|
101 |
+
<label for="doWhatISay">Do what I say:</label>
|
102 |
<input type="checkbox" id="doWhatISay" name="doWhatISay">
|
103 |
</div>
|
104 |
<button type="submit">Generate Config</button>
|