PluginProbe
BerqWP – All-In-One Optimization for Core Web Vitals, Cache, CDN, Images, CSS & JavaScript / trunk
BerqWP – All-In-One Optimization for Core Web Vitals, Cache, CDN, Images, CSS & JavaScript vtrunk
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 1.9.7 All 169 releases
searchpro / admin / activate-license.php

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

42 lines 1012 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if (!defined('ABSPATH')) exit;
3
4 ?>
5 <style>
6 div#berqwp-license-activation {
7 background: #fff;
8 padding: 20px;
9 }
10
11 div#berqwp-license-activation h1 {
12 margin-bottom: 15px;
13 }
14
15 div#berqwp-license-activation input[type="password"] {
16 border-radius: 0;
17 padding: 5px 15px;
18 width: 30%;
19 }
20
21 div#berqwp-license-activation input[type="submit"] {
22 border: none;
23 background: #1F71FF;
24 padding: 11px 20px;
25 color: #fff;
26 cursor: pointer;
27 }
28 </style>
29 <div class="wrap">
30 <div id="berqwp-license-activation">
31 <h1>BerqWP License Activation</h1>
32 <?php
33 if (!empty($error)) {
34 echo wp_kses_post('<p style="color:red">'.$error.'</p>');
35 }
36 ?>
37 <form action="" method="post">
38 <input type="password" placeholder="Enter your license key" name="berqwp_license_key">
39 <input type="submit" value="Activate">
40 </form>
41 </div>
42 </div>