Skip to content

Commit 732e509

Browse files
committed
move SSL check box
1 parent 57f9eb8 commit 732e509

1 file changed

Lines changed: 13 additions & 15 deletions

File tree

templates/setup.html

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1139,14 +1139,26 @@ <h1>☁️ Simple<span class="highlight">Cloud</span>Detect</h1>
11391139
</div>
11401140
</div>
11411141
<div class="input-row">
1142-
<div class="form-group" style="grid-column: span 2;">
1142+
<div class="form-group">
11431143
<label for="image_url">Image Source URL</label>
11441144
<input type="text" id="image_url" name="image_url" class="glow-input"
11451145
value="{{ current_image_url }}" placeholder="{{ image_url_default }}">
11461146
<small style="color: rgb(148, 163, 184); font-size: 12px; margin-top: 4px; display: block;">
11471147
URL to fetch images for cloud detection. Leave empty to use environment variable default.
11481148
</small>
11491149
</div>
1150+
1151+
<div class="form-group">
1152+
<label for="verify_ssl">
1153+
<input type="checkbox" id="verify_ssl" name="verify_ssl"
1154+
{% if current_verify_ssl %}checked{% endif %}
1155+
style="margin-right: 8px; vertical-align: middle;">
1156+
Verify SSL Certificates
1157+
</label>
1158+
<small style="color: rgb(148, 163, 184); font-size: 12px; margin-top: 4px; display: block;">
1159+
Verify TLS certificates when fetching the image URL.
1160+
</small>
1161+
</div>
11501162
</div>
11511163

11521164
<div class="input-row">
@@ -1253,20 +1265,6 @@ <h1>☁️ Simple<span class="highlight">Cloud</span>Detect</h1>
12531265
</small>
12541266
</div>
12551267
</div>
1256-
1257-
<div class="input-row">
1258-
<div class="form-group" style="grid-column: span 2;">
1259-
<label for="verify_ssl">
1260-
<input type="checkbox" id="verify_ssl" name="verify_ssl"
1261-
{% if current_verify_ssl %}checked{% endif %}
1262-
style="margin-right: 8px; vertical-align: middle;">
1263-
Verify SSL Certificates
1264-
</label>
1265-
<small style="color: rgb(148, 163, 184); font-size: 12px; margin-top: 4px; display: block;">
1266-
Verify TLS certificates when fetching the image URL.
1267-
</small>
1268-
</div>
1269-
</div>
12701268
</div>
12711269
</div>
12721270
</div>

0 commit comments

Comments
 (0)