File: bootstrap_modal_with_kwargs.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 (24 lines) | stat: -rw-r--r-- 1,255 bytes parent folder | download | duplicates (2)
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="id_test" class="modal fade test-class" tabindex="-1" role="dialog" aria-labelledby="id_title_test-label">
        <div class="modal-dialog modal-lg" role="document">
            <div class="modal-content">
                <div class="modal-header">
                    <h5 class="modal-title text-center" id="id_title_test">This is my modal</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=" control-label requiredField" for="id_first_name">
                            first name
                            <span class="asteriskField">*</span>
                        </label>
                        <div class=" controls">
                        <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>