File: bootstrap_modal_no_kwargs.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 (24 lines) | stat: -rw-r--r-- 1,200 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<form method="post">
    <div id="modal_id" class="modal fade " tabindex="-1" role="dialog" aria-labelledby="modal_title_id-label">
        <div class="modal-dialog modal-lg" role="document">
            <div class="modal-content">
                <div class="modal-header">
                    <h5 class="modal-title " id="modal_title_id">Modal Title</h5>
                    <button type="button" class="close" data-dismiss="modal" aria-label="Close">
                        <span aria-hidden="true" style="float: left">&times;</span>
                    </button>
                </div>
                <div class="modal-body">
                    <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 inputtext textInput textinput" id="id_first_name" maxlength="5" name="first_name" required type="text">
                    </div>
                </div>
            </div>
        </div>
    </div>
</form>