File: test_multiple_fields.html

package info (click to toggle)
python-crispy-bootstrap3 2024.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 500 kB
  • sloc: python: 1,815; makefile: 3
file content (20 lines) | stat: -rw-r--r-- 881 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<form method="post">
    <div class="form-group" id="div_id_first_name">
        <label class="control-label requiredField" for="id_first_name">
            first name
            <span class="asteriskField">*</span>
        </label>
        <div class="controls">
            <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="control-label requiredField" for="id_last_name">
            last name
            <span class="asteriskField">*</span>
        </label>
        <div class="controls">
            <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>