File: test_multiple_fields.html

package info (click to toggle)
python-crispy-bootstrap4 2025.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 656 kB
  • sloc: python: 1,956; sh: 6; makefile: 4
file content (12 lines) | stat: -rw-r--r-- 751 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
<form method="post">
    <div class="form-group" id="div_id_first_name"><label class="requiredField" for="id_first_name">first name<span
                class="asteriskField">*</span></label>
        <div><input class="form-control form-control-lg inputtext textInput textinput" id="id_first_name" maxlength="5"
                name="first_name" required type="text"></div>
    </div>
    <div class="form-group" id="div_id_last_name"><label class="requiredField" for="id_last_name">last name<span
                class="asteriskField">*</span></label>
        <div><input class="form-control form-control-lg inputtext textInput textinput" id="id_last_name" maxlength="5"
                name="last_name" required type="text"></div>
    </div>
</form>