mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
register: Fix ToS error overlapping with subscribed checkbox text.
Fixed by using the same set of classes we use to show error when verifying the form locally.
This commit is contained in:
@@ -55,7 +55,7 @@ the registration flow has its own (nearly identical) copy of the fields below in
|
||||
</label>
|
||||
{% if form.terms.errors %}
|
||||
{% for error in form.terms.errors %}
|
||||
<p class="help-inline text-error">{{ error }}</p>
|
||||
<p class="error help-inline alert alert-error">{{ error }}</p>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</div>
|
||||
|
@@ -236,7 +236,7 @@ Form is validated both client-side using jquery-validation (see signup.js) and s
|
||||
</label>
|
||||
{% if form.terms.errors %}
|
||||
{% for error in form.terms.errors %}
|
||||
<p class="help-inline text-error">{{ error }}</p>
|
||||
<p class="error help-inline alert alert-error">{{ error }}</p>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user