This commit is contained in:
retoor 2026-08-15 20:38:24 +02:00
parent 682be0861f
commit fa8751a4ca
2 changed files with 3 additions and 1 deletions

View File

@ -57,8 +57,10 @@
} }
.auth-field-check input { .auth-field-check input {
width: auto;
margin-top: 0.2rem; margin-top: 0.2rem;
flex: none; flex: none;
accent-color: var(--accent);
} }
.auth-field-check a { .auth-field-check a {

View File

@ -69,7 +69,7 @@
<div class="auth-field auth-field-check"> <div class="auth-field auth-field-check">
<label for="accept_terms"> <label for="accept_terms">
<input type="checkbox" id="accept_terms" name="accept_terms" value="1" required aria-required="true"{% if accept_terms %} checked{% endif %}> <input type="checkbox" id="accept_terms" name="accept_terms" value="1" required aria-required="true"{% if accept_terms %} checked{% endif %}>
I accept the <a href="/docs/terms.html" target="_blank" rel="noopener">Terms of Service</a> and the <a href="/docs/community-guidelines.html" target="_blank" rel="noopener">Community Guidelines</a>, and I have read the <a href="/docs/privacy.html" target="_blank" rel="noopener">Privacy Policy</a>. <span>I accept the <a href="/docs/terms.html" target="_blank" rel="noopener">Terms of Service</a> and the <a href="/docs/community-guidelines.html" target="_blank" rel="noopener">Community Guidelines</a>, and I have read the <a href="/docs/privacy.html" target="_blank" rel="noopener">Privacy Policy</a>.</span>
</label> </label>
</div> </div>