Bootstrap modal hide and show

To show a Bootstrap modal, you can use the following code:

<button type="button" data-toggle="modal" data-target="#myModal">Open Modal</button>

<div class="modal fade" id="myModal">
  <div class="modal-dialog">
    <div class="modal-content">
      <!-- Modal content goes here -->
    </div>
  </div>
</div>

To hide the modal, you can use JavaScript or jQuery. Here's an example using jQuery:

$('#myModal').modal('hide');

To show the modal again, you can use the following code:

$('#myModal').modal('show');

Please note that you need to include the Bootstrap CSS and JavaScript files in your HTML for the modal to work properly.