PluginProbe
BerqWP – All-In-One Optimization for Core Web Vitals, Cache, CDN, Images, CSS & JavaScript / 1.9.4
BerqWP – All-In-One Optimization for Core Web Vitals, Cache, CDN, Images, CSS & JavaScript v1.9.4
4.1.16 4.1.15 4.1.14 4.1.13 4.1.12 4.1.11 4.1.10 4.0.30 4.0.29 4.0.28 4.0.27 4.0.26 4.0.24 4.0.25 4.0.23 4.0.22 4.0.21 4.0.19 4.0.18 4.0.17 4.0.16 1.9.3 1.9.4 1.9.5 1.9.6 All 170 releases
searchpro / admin / intro-page.php

intro-page.php in BerqWP – All-In-One Optimization for Core Web Vitals, Cache, CDN, Images, CSS & JavaScript 1.9.4, at admin/intro-page.php

67 lines 2.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if (!defined('ABSPATH'))
3 exit;
4
5 ?>
6 <link rel="preconnect" href="https://fonts.googleapis.com">
7 <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
8 <link href="https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500&display=swap" rel="stylesheet">
9 <link rel="stylesheet" href="<?php echo esc_attr(optifer_URL . '/admin/css/style.css?v=' . BERQWP_VERSION); ?>">
10
11 <div class="wrap">
12 <h1 style="display:none">BerqWP</h1>
13 <div></div>
14 <div id="berqwp-intro">
15 <h2 class="title">Automate PageSpeed optimization with just a few clicks</h2>
16
17 <form class="license-verification" action="" method="post">
18 <?php wp_nonce_field('berqwp_save_settings', 'berqwp_save_nonce'); ?>
19 <input type="password" name="berqwp_license_key" placeholder="Enter your license key" required>
20 <input type="submit" value="Activate" disabled>
21 </form>
22 <?php
23 if (!empty($error)) {
24 echo wp_kses_post('<p style="color:red">'.$error.'</p>');
25 }
26 ?>
27 <p class="license-msg">Create an account to obtain a BerqWP license key.</p>
28 <div class="cta-btns">
29 <a href="http://berqwp.com/pricing/" class="btn" target="_blank">
30 <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
31 <path
32 d="M12 8L15 13.2L18 10.5L17.3 14H6.7L6 10.5L9 13.2L12 8ZM12 4L8.5 10L3 5L5 16H19L21 5L15.5 10L12 4ZM19 18H5V19C5 19.6 5.4 20 6 20H18C18.6 20 19 19.6 19 19V18Z"
33 fill="white" />
34 </svg>
35 Purchase Premium
36 </a>
37 <a href="https://berqwp.com/free-account/" class="btn" target="_blank">
38 <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
39 <path
40 d="M20 2H4C2.9 2 2 2.9 2 4V22L6 18H20C21.1 18 22 17.1 22 16V4C22 2.9 21.1 2 20 2ZM20 16H5.17L4 17.17V4H20V16Z"
41 fill="white" />
42 <path d="M12 15L13.57 11.57L17 10L13.57 8.43L12 5L10.43 8.43L7 10L10.43 11.57L12 15Z"
43 fill="white" />
44 </svg>
45
46 Get Free Account
47 </a>
48 </div>
49 </div>
50 </div>
51 <script src="<?php echo esc_attr(optifer_URL . '/admin/js/bootstrap-slider.js?v=' . BERQWP_VERSION); ?>"></script>
52 <script>
53 (function($){
54 $(document).ready(function() {
55
56 $('input[name="berqwp_license_key"]').on('change, input', function () {
57 if ($(this).val().length > 5) {
58 $('input[value="Activate"]').prop('disabled', false);
59 } else {
60 $('input[value="Activate"]').prop('disabled', true);
61 }
62 })
63
64
65 })
66 })(jQuery)
67 </script>