File: test_bootstrap5_form_inline.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 (20 lines) | stat: -rw-r--r-- 980 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 class="row row-cols-lg-auto" method="post">
    <div id="div_id_email">
        <label class="visually-hidden" for="id_email">
            email
        </label><input class="form-control inputtext textInput textinput" id="id_email" maxlength="30" name="email"
            placeholder="email" required type="text" aria-describedby="id_email_helptext">
    </div>
    <div id="div_id_password1">
        <label class="visually-hidden" for="id_password1">
            password
        </label><input class="form-control textInput textinput" id="id_password1" maxlength="30" name="password1"
            placeholder="password" required type="password">
    </div>
    <div id="div_id_last_name">
        <label class="visually-hidden" for="id_last_name">
            last name
        </label><input class="form-control inputtext textInput textinput" id="id_last_name" maxlength="5"
            name="last_name" placeholder="last name" required type="text">
    </div>
</form>