Loading :: جاري التحميل

Modals

Modal is a popup window that appears on top of the main screen to grab user attention for immediate actions or input. It often contains focused content like forms or alerts and blocks interaction with the background until dismissed. Modals are useful for tasks needing user confirmation, feedback, or critical alerts, helping to keep focus and simplify interaction.

Compnent Demo

<div class="modal fade" id="mdl01" aria-labelledby="mdl01" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <h1 class="modal-title fs-5" id="mdl01">
          <i class="icon-block dga-icon md light brand rounded dga-arrow-data-transfer-diagonalStrokeRounded-solid"></i>
            Section Title
          </h1>
        <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
      </div>
      <div class="modal-body">
        section brief comes here with good space for content
      </div>
      <div class="modal-footer">
        <div class="action-item first">
          <button type="button" class="dga-btn btn-md dga-secondary-outline" data-bs-dismiss="modal">Action</button>
        </div>
        <div class="action-item end">
          <button type="button" class="dga-btn btn-md dga-secondary-outline" data-bs-dismiss="modal">Action</button>
          <button type="button" class="dga-btn btn-md dga-neutral" data-bs-dismiss="modal">Action</button>
        </div>
      </div>
    </div>
  </div>
</div>