File: test_field_with_buttons.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 (16 lines) | stat: -rw-r--r-- 829 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<form method="post">
    <div class="form-group extra" autocomplete="off"> <label for="id_password1" class=" requiredField"> password<span
                class="asteriskField">*</span> </label>
        <div class="">
            <div class=" input-group input-group-sm">
                <input type="password" name="password1" maxlength="30" class="span4 textinput textInput form-control"
                    required id="id_password1">
                <span class="input-group-append">
                    <button class="btn" id="go-button" type="button">Go!</button>
                    <button class="btn extra" type="button">No!</button>
                    <button class="btn" name="whatever <>&" type="submit" value="something">Test <>&</button>
                </span>
            </div>
        </div>
    </div>
</form>