cityssm/parking-ticket-system

View on GitHub
public/html/mto-createBatch.html

Summary

Maintainability
Test Coverage
<div class="modal">
  <div class="modal-background"></div>
  <div class="modal-card">
    <header class="modal-card-head">
      <h3 class="modal-card-title">Create a New Batch</h3>
      <button class="delete is-close-modal-button" aria-label="close" type="button"></button>
    </header>
    <section class="modal-card-body">
      <p>
        Please select the type of lookup batch?
      </p>
      <div class="columns mt-2">
        <div class="column">
          <button class="button is-fullwidth is-create-batch-button" data-include-labels="0" type="button">
            Regular Batch
          </button>
        </div>
        <div class="column">
          <button class="button is-fullwidth is-create-batch-button" data-include-labels="1" type="button">
            Batch with Labels
          </button>
        </div>
      </div>
    </section>
    <footer class="modal-card-foot justify-flex-end">
      <button class="button is-close-modal-button" type="button">Cancel</button>
    </footer>
  </div>
</div>