partials
1 day 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
2 weeks ago
general-error-modal.php
1 year ago
header.php
1 day ago
main-navigation.php
1 year ago
newsfeed.php
1 day ago
contact-us-pro.php
46 lines
| 1 | <?php |
| 2 | |
| 3 | use WPStaging\Framework\Facades\UI\Checkbox; |
| 4 | |
| 5 | ?> |
| 6 | <div class="wpstg-report-issue-form"> |
| 7 | <div class="wpstg-field"> |
| 8 | <input placeholder="Your email address..." type="email" id="wpstg-report-email" class="wpstg-report-email"> |
| 9 | </div> |
| 10 | <div class="wpstg-field"> |
| 11 | <input placeholder="Your hosting provider...(optional)" type="text" id="wpstg-report-hosting-provider" class="wpstg-report-hosting-provider"> |
| 12 | </div> |
| 13 | <div class="wpstg-field"> |
| 14 | <textarea rows="3" id="wpstg-report-description" class="wpstg-report-description" placeholder="How may we help you? In case of issues please provide us with access data so we can help you faster."></textarea> |
| 15 | </div> |
| 16 | <div class="wpstg-field wpstg-report-privacy-policy"> |
| 17 | <label for="wpstg-report-syslog"> |
| 18 | <?php Checkbox::render('wpstg-report-syslog', '', '', true, ['classes' => 'wpstg-report-syslog']); ?> |
| 19 | <?php echo wp_kses_post(sprintf( |
| 20 | __('Allow submission of %s.', 'wp-staging'), |
| 21 | '<a href="' . esc_url(admin_url()) . 'admin.php?page=wpstg-tools&tab=system-info' . '" target="_blank">' . esc_html__('log files', 'wp-staging') . '</a>' |
| 22 | )); ?> |
| 23 | </label> |
| 24 | </div> |
| 25 | <div class="wpstg-field wpstg-report-privacy-policy"> |
| 26 | <label for="wpstg-report-terms"> |
| 27 | <?php Checkbox::render('wpstg-report-terms', '', '', true, ['classes' => 'wpstg-report-terms']); ?> |
| 28 | <?php echo sprintf(esc_html__('I allow WP STAGING to use my email to reply to my request. %s', 'wp-staging'), '<a href="https://wp-staging.com/privacy-policy/" target="_blank">' . esc_html__('Privacy Policy', 'wp-staging') . '</a>'); ?> |
| 29 | </label> |
| 30 | </div> |
| 31 | <div class="wpstg-field"> |
| 32 | <div class="wpstg-buttons"> |
| 33 | <div class="wpstg-contact-us-actions"> |
| 34 | <button type="submit" id="wpstg-report-submit" class="wpstg-form-submit wpstg-button--blue"> |
| 35 | <?php esc_html_e('Submit', 'wp-staging'); ?> |
| 36 | </button> |
| 37 | <span id="wpstg-contact-us-loader" class="wpstg-loader"></span> |
| 38 | </div> |
| 39 | <button id="wpstg-report-cancel" class="wpstg-close-button"> |
| 40 | <a href="javascript:void(0)" class="wpstg-report-cancel wpstg--red"><?php esc_html_e('Close', 'wp-staging'); ?></a> |
| 41 | </button> |
| 42 | <div class="wpstg-clear"></div> |
| 43 | </div> |
| 44 | </div> |
| 45 | </div> |
| 46 |