partials
2 months ago
contact-us-basic.php
1 year ago
contact-us-pro.php
3 months ago
contact-us.php
1 year ago
darkmode-toggle-button.php
4 months ago
faq.php
3 months ago
footer.php
1 week ago
general-error-modal.php
1 year ago
header.php
3 months ago
main-navigation.php
1 year ago
newsfeed.php
3 months ago
contact-us-basic.php
36 lines
| 1 | <?php |
| 2 | |
| 3 | use WPStaging\Framework\Facades\UI\Checkbox; |
| 4 | |
| 5 | ?> |
| 6 | <div id="wpstg-contact-us-modal" class="wpstg-contact-us-modal"> |
| 7 | <div class="wpstg-modal-content"> |
| 8 | <?php require(WPSTG_VIEWS_DIR . '_main/partials/contact-us-header.php'); ?> |
| 9 | <?php require(WPSTG_VIEWS_DIR . '_main/partials/buy-or-open-forum.php'); ?> |
| 10 | <div class="wpstg-contact-us-report-issue"> |
| 11 | <span class="wpstg-contact-us-basic-h1"><?php esc_html_e("Ask in the forum", "wp-staging"); ?></span> |
| 12 | <div class="wpstg-contact-us-troubleshot-container"> |
| 13 | <h2><?php esc_html_e('Send troubleshooting data', "wp-staging"); ?></h2> |
| 14 | <p><?php esc_html_e('Send us system information and debug logs before opening a ticket so we can help investigate.', "wp-staging"); ?></p> |
| 15 | <div class="wpstg-contact-us-force-send-email-container"> |
| 16 | <label for="wpstg-force-send-debug-log"> |
| 17 | <?php Checkbox::render('wpstg-force-send-debug-log', 'wpstg-force-send-debug-log'); ?> |
| 18 | <?php esc_html_e('Force Send Debug Log', 'wp-staging') ?> |
| 19 | <div class="wpstg--tooltip"> |
| 20 | <img class="wpstg--dashicons" src="<?php echo esc_url($urlAssets); ?>svg/info-outline.svg" alt="info"/> |
| 21 | <span class="wpstg--tooltiptext"> |
| 22 | <?php esc_html_e('Use this option if you have already sent a debug log email and want to send it again within five minutes.', 'wp-staging');?> |
| 23 | </span> |
| 24 | </div> |
| 25 | </label> |
| 26 | </div> |
| 27 | <?php require(WPSTG_VIEWS_DIR . '_main/partials/share-debug-code.php'); ?> |
| 28 | </div> |
| 29 | </div> |
| 30 | <div class="wpstg-modal-footer"></div> |
| 31 | <div class="wpstg-contact-us-success-form"> |
| 32 | <?php require(WPSTG_VIEWS_DIR . '_main/partials/contact-us-success.php'); ?> |
| 33 | </div> |
| 34 | </div> |
| 35 | </div> |
| 36 |