File: test_inline_field.html

package info (click to toggle)
python-crispy-bootstrap5 2024.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 664 kB
  • sloc: python: 1,949; sh: 6; makefile: 3
file content (14 lines) | stat: -rw-r--r-- 697 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<form class="align-items-center row row-cols-lg-auto" method="post">
    <div class="col-4" id="div_id_first_name">
        <label class="visually-hidden" for="id_first_name">
            first name
        </label><input class="form-control inputtext textInput textinput" id="id_first_name" maxlength="5"
            name="first_name" placeholder="first name" required type="text">
    </div>
    <div class="col-4 form-check form-check-inline" id="div_id_is_company">
        <input class="checkboxinput form-check-input" id="id_is_company" name="is_company" type="checkbox"><label
            class="form-check-label" for="id_is_company">
            company
        </label>
    </div>
</form>