PluginProbe ʕ •ᴥ•ʔ
WP STAGING – WordPress Backup, Restore, Migration & Clone / 4.9.2
WP STAGING – WordPress Backup, Restore, Migration & Clone v4.9.2
4.9.2 4.9.1 4.9.0 4.8.1 trunk 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.10.0 3.2.0 3.3.1 3.3.2 3.3.3 3.4.1 3.4.3 3.5.0 3.6.0 3.7.1 3.8.0 3.8.1 3.8.2 3.8.3 3.8.4 3.8.5 3.8.6 3.8.7 3.9.0 3.9.1 3.9.2 3.9.3 3.9.4 4.0.0 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.2.0 4.2.1 4.3.0 4.3.1 4.3.2 4.4.0 4.5.0 4.6.0 4.7.0 4.7.1 4.7.2 4.7.3 4.8.0
wp-staging / views / _main / contact-us-pro.php
wp-staging / views / _main Last commit date
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