0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-11 15:51:19 +00:00

Fix HTML validation issues

This commit is contained in:
Pēteris Caune 2021-08-26 12:02:09 +03:00
parent 6f5a22fd98
commit 2c662dac20
No known key found for this signature in database
GPG key ID: E28D7679E9A9EDE2
12 changed files with 34 additions and 37 deletions

View file

@ -77,6 +77,7 @@ table.channels-table > tbody > tr > th {
.channel-row .actions {
text-align: right;
padding-right: 16px;
}
.channel-row .actions form {

View file

@ -422,7 +422,7 @@
<div class="col-sm-6">
<div class="form-group">
<label for="postal_Code">
<label for="postal_code">
Postal Code
</label>
<input

View file

@ -82,6 +82,7 @@
{% if use_webauthn %}
<tr>
<th>Security keys</th>
<th></th>
</tr>
{% for credential in credentials %}
<tr>
@ -104,6 +105,7 @@
<tr>
<th>Authenticator app</th>
<th></th>
</tr>
{% if profile.totp %}
<tr>

View file

@ -253,7 +253,7 @@
</div>
{% if is_owner %}
<div class="panel panel-{{ transfer_status|default:'default' }}"">
<div class="panel panel-{{ transfer_status|default:'default' }}">
<div class="panel-body settings-block">
<h2>Transfer Ownership</h2>
@ -531,7 +531,7 @@
{% if memberships %}
<div class="form-group">
<label for="update-name-input" class="col-sm-4 control-label">
<label for="new-owner" class="col-sm-4 control-label">
Choose owner
</label>
<div class="col-sm-7">

View file

@ -30,24 +30,24 @@
<br />
<div class="btn-group" data-toggle="buttons">
<label id="show-svg" class="btn btn-default active" data->
<input type="radio" autocomplete="off" checked> SVG
<label id="show-svg" class="btn btn-default active">
<input type="radio" checked> SVG
</label>
<label id="show-json" class="btn btn-default">
<input type="radio" autocomplete="off"> JSON
<input type="radio"> JSON
</label>
<label id="show-shields" class="btn btn-default">
<input type="radio" autocomplete="off"> Shields.io
<input type="radio"> Shields.io
</label>
</div>
&nbsp;
<div class="btn-group" data-toggle="buttons">
<label id="show-no-late" class="btn btn-default active">
<input type="radio" autocomplete="off" checked> Badge states: <b>up</b> or <b>down</b>
<input type="radio" checked> Badge states: <b>up</b> or <b>down</b>
</label>
<label id="show-with-late" class="btn btn-default">
<input type="radio" autocomplete="off"> Badge states: <b>up</b>, <b>late</b> or <b>down</b>
<input type="radio"> Badge states: <b>up</b>, <b>late</b> or <b>down</b>
</label>
</div>
@ -129,7 +129,6 @@
</tr>
{% endfor %}
</table>
</div>
</div>
</div>
{% endblock %}

View file

@ -167,9 +167,6 @@
</button>
{% endif %}
</td>
<td>
</td>
</tr>
{% endwith %}
{% endfor %}
@ -535,7 +532,7 @@
</div>
<div class="modal-body">
<div class="form-group">
<label for="update-name-input" class="col-sm-2 control-label">
<label class="col-sm-2 control-label">
Name
</label>
<div class="col-sm-10">

View file

@ -128,12 +128,12 @@
<td class="actions">
{% if rw %}
<button class="btn btn-default pause" type="button">
<span class="ic-paused" />
<span class="ic-paused"></span>
</button>
{% endif %}
<button title="Show Details" class="btn btn-default show-log" type="button">
<span class="ic-dots" />
<span class="ic-dots"></span>
</button>
</td>
</tr>

View file

@ -94,7 +94,7 @@
</div>
<div class="col-md-4">
<div class="form-group">
<label for="cron-grace">Grace Time</label>
<label for="update-timeout-grace-cron">Grace Time</label>
<div class="input-group">
<input
type="number"

View file

@ -48,7 +48,9 @@
<span class="step-no"></span>
<p>The integration needs a <strong>Create and Update Access</strong>
permission, make sure it is <strong>checked</strong>.
</p>The integration does not need the <strong>Read Access</strong> and
</p>
<p>
The integration does not need the <strong>Read Access</strong> and
<strong>Delete Access</strong> checkboxes make sure they are
<strong>unchecked</strong>.
</p>

View file

@ -56,12 +56,10 @@
</div>
</div>
<div class="form-group" class="clearfix">
<br>
<br>
<div class="text-right">
<button type="submit" class="btn btn-primary">Save Integration</button>
</div>
<br>
<br>
<div class="text-right">
<button type="submit" class="btn btn-primary">Save Integration</button>
</div>
</form>

View file

@ -68,7 +68,6 @@ Email Settings - {{ site_name }}
{% if form.up.value %} checked {% endif %}>
<span class="checkmark"></span>
A check goes <strong>up</strong>
</span>
{% if form.down.errors %}
<div class="help-block">
{{ form.down.errors|join:"" }}
@ -78,6 +77,7 @@ Email Settings - {{ site_name }}
<span class="text-muted">
Ticketing system integrations: untick this and avoid creating new tickets
when checks come back up.
</span>
{% endif %}
</label>
</div>

View file

@ -154,18 +154,16 @@
</div>
</div>
<div class="form-group" class="clearfix">
<br>
<br>
<div class="text-right">
<button type="submit" class="btn btn-primary">
{% if channel %}
Save Changes
{% else %}
Save Integration
{% endif %}
</button>
</div>
<br>
<br>
<div class="text-right">
<button type="submit" class="btn btn-primary">
{% if channel %}
Save Changes
{% else %}
Save Integration
{% endif %}
</button>
</div>
</form>