Advertisement
Wastebinonpastebin

exampleModal

Nov 30th, 2021
852
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.79 KB | None | 0 0
  1. <!-- Modal -->
  2. <div class="modal fade" id="modalModalname" tabindex="-1" aria-labelledby="modalModalnameLabel" aria-hidden="true">
  3.  <div class="modal-dialog">
  4.   <div class="modal-content">
  5.  
  6.    <!-- modal header -->
  7.    <div class="modal-header">
  8.     <h5 class="modal-title" id="modalModalnameLabel">Modal Header</h5>
  9.     <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
  10.    </div>
  11.    
  12.     <div class="modal-body">
  13.      <!-- insert modal body here -->
  14.     </div>
  15.  
  16.     <!-- footer -->
  17.     <div class="modal-footer">
  18.      <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Abbruch</button>
  19.      <!-- class="btn" only works with bootstrap -->
  20.      <input type="submit" class="btn" value="Save">
  21.     </div>
  22.  
  23.   </div>
  24.  </div>
  25. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement