You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tried the following: <form method="POST" action="{% url 'myauth:account_signup' %}"> {% csrf_token %} {% for field in signup_form %} {% if field.name == 'sign-agree-check' %} {% bootstrap_field field form_check_class='checkmark' show_label=False %} {% else %} {% bootstrap_field field show_label=False field_class='m-0 p-0' form_group_class='m-0 p-0' label_class='m-0 p-0' %} {% endif %} {% endfor %} <button type="submit" class="site-btn">Register Now</button> </form>
This is the HTML that is rendered: <div class="form-group"> <div class="form-check"> <input type="checkbox" name="sign-agree-check" id="sign-agree-check" class="form-check-input" required=""> <label class="form-check-label" for="sign-agree-check"> I agree to the terms & conditions </label> </div> </div>
The text was updated successfully, but these errors were encountered:
Tried the following:
<form method="POST" action="{% url 'myauth:account_signup' %}">
{% csrf_token %}
{% for field in signup_form %}
{% if field.name == 'sign-agree-check' %}
{% bootstrap_field field form_check_class='checkmark' show_label=False %}
{% else %}
{% bootstrap_field field show_label=False field_class='m-0 p-0' form_group_class='m-0 p-0' label_class='m-0 p-0' %}
{% endif %}
{% endfor %}
<button type="submit" class="site-btn">Register Now</button>
</form>
This is the HTML that is rendered:
<div class="form-group">
<div class="form-check">
<input type="checkbox" name="sign-agree-check" id="sign-agree-check" class="form-check-input" required="">
<label class="form-check-label" for="sign-agree-check">
I agree to the terms & conditions
</label>
</div>
</div>
The text was updated successfully, but these errors were encountered: