class-mo-firebase-authentication-demo.php
3 years ago
class-mo-firebase-authentication-faq.php
3 years ago
class-mo-firebase-authentication-support.php
3 years ago
class-mo-firebase-authentication-support.php
58 lines
| 1 | <?php |
| 2 | |
| 3 | class Mo_Firebase_Authentication_Admin_Support { |
| 4 | |
| 5 | public static function mo_firebase_authentication_support(){ |
| 6 | ?> |
| 7 | <div class="col-md-12" style="padding: 5px;"> |
| 8 | <div class="mo_firebase_auth_card" style="width:90%" > |
| 9 | <h3 style="margin: 10px 0;">Contact us</h3> |
| 10 | <p>Need any help?<br>Just send us a query so we can help you.</p> |
| 11 | |
| 12 | <form action="" method="POST"> |
| 13 | <table class="mo_settings_table"> |
| 14 | <?php wp_nonce_field('mo_firebase_auth_contact_us_form','mo_firebase_auth_contact_us_field'); ?> |
| 15 | <input type="hidden" name="option" value="mo_firebase_auth_contact_us"> |
| 16 | |
| 17 | <tr> |
| 18 | <td><input style="width:95%;" type="email" placeholder="Enter email here" name="mo_firebase_auth_contact_us_email" id="mo_firebase_auth_contact_us_email" required></td> |
| 19 | </tr><tr><td></td></tr> |
| 20 | <tr> |
| 21 | <td><input style="width:95%;" type="tel" id="mo_firebase_auth_contact_us_phone" pattern="[\+]\d{11,14}|[\+]\d{1,4}[\s]\d{9,10}" placeholder="Enter phone here" name="mo_firebase_auth_contact_us_phone"></td> |
| 22 | </tr><tr><td></td></tr> |
| 23 | <tr> |
| 24 | <td><textarea style="width:95%;" name="mo_firebase_auth_contact_us_query" placeholder="Enter query here" rows="5" id="mo_firebase_auth_contact_us_query" required></textarea></td> |
| 25 | </tr><tr><td> |
| 26 | <input type="submit" class="button button-primary button-large" style="width:100px; margin: 15px 0;" value="Submit"></td></tr> |
| 27 | </table> |
| 28 | </form> |
| 29 | |
| 30 | <p style="padding-right: 8%;">If you want custom features in the plugin, just drop an email at <a href="mailto:info@xecurify.com">info@xecurify.com</a></p> |
| 31 | </div> |
| 32 | </div> |
| 33 | <div class="firestore_adv"> |
| 34 | <div class="firestore_adv_row"> |
| 35 | <div class="col-md-2 text-center"> |
| 36 | <img src="<?php echo esc_url(dirname(plugin_dir_url( __FILE__ )));?>/../../public\images\mini.png" width="50px"> |
| 37 | </div> |
| 38 | <div class="col-md-10 text-dark"> |
| 39 | <h5>WordPress Firestore Integrator </h5> |
| 40 | <h6> |
| 41 | <span class="h5 ">By</span><span><a rel="nofollow" href="https://miniorange.com/" target="_blank" class="firestore_adv_url"> miniOrange</a></span> |
| 42 | </h6> |
| 43 | <hr class="firestore_adv_hr"/> |
| 44 | </div> |
| 45 | </div> |
| 46 | <p class="mt-2 pl-2 firestore_adv_content"> |
| 47 | WordPress Firestore integrator plugin allows you to sync your wordpress data into <strong>Firebase Cloud Firestore</strong>. The cloud firestore data can also be displayed on your WordPress site. |
| 48 | </p> |
| 49 | <p style="margin-left: 4%;"> Please reach out to us at <a href="mailto:info@xecurify.com">info@xecurify.com</a> to discuss the integration you want between your WordPress site and Firestore.</p> |
| 50 | </div> |
| 51 | |
| 52 | <script> |
| 53 | jQuery("#mo_firebase_auth_contact_us_phone").intlTelInput(); |
| 54 | |
| 55 | </script> |
| 56 | <?php |
| 57 | } |
| 58 | } |