FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
backup-backup
/
includes
/
dashboard
/
modals
Edit File: upload-invalid-manifest-modal.php
<?php // Namespace namespace BMI\Plugin\Dashboard; // Exit on direct access if (!defined('ABSPATH')) exit; ?> <div class="bmi-modal" id="upload-invalid-manifest-modal"> <div class="bmi-modal-wrapper" style="max-width: 564px; max-width: min(564px, 80vw);"> <div class="bmi-modal-content"> <div class="center"> <div class="mbl cf center inline"> <div class="left center"> <img class="inline" src="<?php echo esc_url( $this->get_asset('images', 'warning-red.png') ); ?>" alt="error"> </div> <div class="left f24 bold lh50 mms"><?php esc_html_e("Invalid backup", 'backup-backup'); ?></div> </div> </div> <div class="center f19 regular mbl lh30"> <?php esc_html_e("Uploaded file is not valid backup,", 'backup-backup'); ?><br> <?php esc_html_e("we removed the file from the server.", 'backup-backup'); ?> </div> <div class="center"> <a href="#" class="btn bmi-modal-closer inline mm60 center block bold nodec"> <?php esc_html_e("Ok, close", 'backup-backup'); ?> </a> </div> </div> </div> </div>
Save
Back