| 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> |