File: test_uneditable_field.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 (10 lines) | stat: -rw-r--r-- 414 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
<form method="post">
    <div class="form-group" id="div_id_first_name">
        <label class=" requiredField">
            first name<span class="asteriskField">*</span>
        </label>
        <div class="">
            <input class="form-control inputtext textInput textinput uneditable-input" disabled id="id_first_name" maxlength="5" name="first_name" required type="text">
        </div>
    </div>
</form>