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-demo.php
72 lines
| 1 | <?php |
| 2 | |
| 3 | class Mo_Firebase_Authentication_Admin_Demo { |
| 4 | |
| 5 | public static function mo_firebase_authentication_handle_demo(){ |
| 6 | self::demo_request(); |
| 7 | } |
| 8 | |
| 9 | public static function demo_request(){ |
| 10 | |
| 11 | ?> |
| 12 | <div class="row"> |
| 13 | <div class="col-md-12"> |
| 14 | <div class="mo_firebase_auth_card" style="width:100%"> |
| 15 | <h3><?php esc_html_e('Request for Demo','firebase-authentication'); ?></h3><hr> |
| 16 | <p> |
| 17 | <?php esc_html_e('Want to try out the paid features before purchasing the license? Just let us know which plan you\'re interested in and we will setup a demo for you.','firebase-authentication');?></p> |
| 18 | <form method="post" action=""> |
| 19 | <input type="hidden" name="option" value="mo_fb_demo_request_form" /> |
| 20 | <?php wp_nonce_field('mo_fb_demo_request_form', 'mo_fb_demo_request_field'); ?> |
| 21 | |
| 22 | <div class="row"> |
| 23 | <div class="col-md-1"></div> |
| 24 | <div class="col-md-3"> |
| 25 | <p style="margin-bottom: 3px"><strong><p style="display:inline;color:red;">*</p>Email ID: </strong></p> |
| 26 | </div> |
| 27 | <div class="col-md-6"> |
| 28 | <input required type="email" name="mo_auto_create_demosite_email" placeholder="We will use this email to setup the demo for you"style="width:80%; font-size: 14px;" value=""> |
| 29 | </div> |
| 30 | </div> |
| 31 | <div class="row"> |
| 32 | <div class="col-md-1"></div> |
| 33 | <div class="col-md-3"> |
| 34 | <p style="margin-bottom: 3px"><strong><p style="display:inline;color:red;">*</p>Request a demo for: </strong></p> |
| 35 | </div> |
| 36 | <div class="col-md-6"> |
| 37 | <select required name="mo_auto_create_demosite_demo_plan"id="mo_fb_demo_plan" style="width:80%; font-size: 14px;" > |
| 38 | <option disabled selected>------------------ Select ------------------</option> |
| 39 | <option value="miniorange-firebase-authentication-enterprise@22.0.3">WP Firebase Authentication Enterprise Plugin</option> |
| 40 | <option value="miniorange-firebase-authentication-premium@12.0.3">WP Firebase Authentication Premium Plugin</option> |
| 41 | <option value="Not Sure">Not Sure</option> |
| 42 | </select> |
| 43 | </div> |
| 44 | </div> |
| 45 | <div class="row"> |
| 46 | <div class="col-md-1"></div> |
| 47 | <div class="col-md-3"> |
| 48 | <p style="margin-bottom: 3px"><strong><p style="display:inline;color:red;">*</p>Usecase: </strong></p> |
| 49 | </div> |
| 50 | <div class="col-md-6"> |
| 51 | <textarea type="text" minlength="15" name="mo_auto_create_demosite_usecase" rows="4"placeholder="Example: WooCommerce Integration, WP Login with Firebase credentials for my Mobile App users, Firebase social login for my WordPress, etc" style="width:80%; font-size: 14px;" required value=""></textarea> |
| 52 | </div> |
| 53 | </div> |
| 54 | <br> |
| 55 | <div class="row"> |
| 56 | <div class="col-md-1"></div> |
| 57 | <div class="col-md-3"></div> |
| 58 | <div class="col-md-6"> |
| 59 | <input type="submit" style="text-align:center; font-size: 14px; font-weight: 400;" class="button button-primary button-large" name="submit" value="Submit Demo Request" ><br> |
| 60 | </div> |
| 61 | </div> |
| 62 | <br> |
| 63 | </form> |
| 64 | </div> |
| 65 | </div> |
| 66 | </div> |
| 67 | <?php |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | |
| 72 |