| 1 |
<?php |
| 2 |
/** |
| 3 |
* Modal |
| 4 |
* |
| 5 |
* @package Modal |
| 6 |
*/ |
| 7 |
|
| 8 |
// phpcs:ignore |
| 9 |
?> |
| 10 |
|
| 11 |
<!-- URL SAVE PROGRESS --> |
| 12 |
<div class="modal fade" id="url-save" data-backdrop="static" tabindex="-1" role="dialog"> |
| 13 |
<div class="modal-dialog" role="document"> |
| 14 |
<div class="modal-content p-5 shadow text-center"> |
| 15 |
|
| 16 |
<h2>Updating Your Site</h2> |
| 17 |
<div class="progress mt-3 mb-3"> |
| 18 |
<div class="progress-bar progress-bar-striped progress-bar-animated green-bg" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%"></div> |
| 19 |
</div> |
| 20 |
<p class="js-message">Just checking all the affected links and/or keywords on your site to make sure everything's updated.</p> |
| 21 |
|
| 22 |
</div> |
| 23 |
</div> |
| 24 |
</div> |
| 25 |
|