| 1 |
{# |
| 2 |
Responsive Menu Jinja template file. |
| 3 |
Safe to Copy |
| 4 |
#} |
| 5 |
|
| 6 |
<tr> |
| 7 |
<td class='col-left col-md-3'> |
| 8 |
<label for='responsive-menu-pro-license-key' class='control-label'> |
| 9 |
License Key |
| 10 |
</label> |
| 11 |
<div class="sub-text"> |
| 12 |
{% if license_type() %} |
| 13 |
<span class='valid-license'>Valid {{ license_type() }}</span> |
| 14 |
{% else %} |
| 15 |
<span class='invalid-license'>Invalid license</span> |
| 16 |
{% endif %} |
| 17 |
{% if not license_type() %} |
| 18 |
<div class="sub_sub_title"> |
| 19 |
<br />Don't panic. The plugin will still function 100%, it is only automatic updates that will be affected.<br /><br /> |
| 20 |
You can read about troubleshooting license issues <a href="https://responsive.menu/knowledgebase/license-activation-issues/?utm_source=free-plugin&utm_medium=page&utm_campaign=license-issues" target="_blank">here</a>. |
| 21 |
</div> |
| 22 |
{% endif %} |
| 23 |
</div> |
| 24 |
</td> |
| 25 |
<td class="col-right"> |
| 26 |
<div class='input-group'> |
| 27 |
<input type='password' name='responsive-menu-pro-license-key' value='{{ license_key() }}' class='form-control'> |
| 28 |
<span class='input-group-btn'> |
| 29 |
<button type='submit' name='responsive-menu-pro-add-license-key' class='btn btn-primary btn-rm'>Add License Key</button> |
| 30 |
</span> |
| 31 |
</div> |
| 32 |
</td> |
| 33 |
</tr> |
| 34 |
|