<?php

  // Namespace
  namespace BMI\Plugin\Dashboard;

  // Exit on direct access
  if (!defined('ABSPATH')) exit;

?>

<div class="modal" id="upload-exist-file-modal">

  <div class="modal-wrapper" style="max-width: 564px; max-width: min(564px, 80vw);">
    <div class="modal-content">

      <div class="center">
        <div class="mbl cf center block inline">
          <div class="left center">
            <img class="inline" src="<?php echo $this->get_asset('images', 'warning-red.png'); ?>" alt="error">
          </div>
          <div class="left f24 bold lh50 mms"><?php _e("File already exist", 'backup-backup'); ?></div>
        </div>
      </div>

      <div class="center f19 regular mbl lh30">
        <?php _e("The file you tried to upload already match,", 'backup-backup'); ?><br>
        <?php _e("name and size of file which already,", 'backup-backup'); ?><br>
        <?php _e("exist in your backup directory.", 'backup-backup'); ?><br><br>
        <?php _e("If you wish to have duplicate change name of the upload.", 'backup-backup'); ?><br>
      </div>

      <div class="center">
        <a href="#" class="btn modal-closer inline mm60 center block bold nodec">
          <?php _e("Ok, close", 'backup-backup'); ?>
        </a>
      </div>

    </div>
  </div>

</div>
