stories
11 months ago
action-button.html
1 year ago
action-link.html
1 year ago
activate-license.html
1 year ago
badge.html
1 year ago
dismiss.html
5 years ago
footer.html
5 years ago
index.html.php
11 months ago
row-item.html
5 years ago
section.html
1 year ago
sub-header.html
5 years ago
activate-license.html
51 lines
| 1 | {{ text }} <a href="{{ href }}" class="activate-license">{{ label }}</a> |
| 2 | |
| 3 | <dialog class="give-modal-dialog" id="give-activate-license-modal"> |
| 4 | <div id="give-license-activator-wrap" class="give-license-top-widget"> |
| 5 | <div id="give-license-activator-inner"> |
| 6 | <div class="give-license-widget-heading"> |
| 7 | <h2>{{ title }}</h2> |
| 8 | <button aria-label="Close dialog" class="givewp-modal-close"> |
| 9 | <svg xmlns="http://www.w3.org/2000/svg" width="23" height="23" viewBox="0 0 24 24" |
| 10 | aria-label="Close dialog icon"> |
| 11 | <path |
| 12 | d="M18.707 6.707a1 1 0 0 0-1.414-1.414L12 10.586 6.707 5.293a1 1 0 0 0-1.414 1.414L10.586 12l-5.293 5.293a1 1 0 1 0 1.414 1.414L12 13.414l5.293 5.293a1 1 0 0 0 1.414-1.414L13.414 12l5.293-5.293z"></path> |
| 13 | </svg> |
| 14 | </button> |
| 15 | </div> |
| 16 | <div class="give-license-widget-content"> |
| 17 | <p class="give-field-description"> |
| 18 | {{ description }} |
| 19 | </p> |
| 20 | |
| 21 | <form method="post" action="" class="give-license-activation-form"> |
| 22 | |
| 23 | <div class="give-license-notices"></div> |
| 24 | |
| 25 | {{ nonce }} |
| 26 | |
| 27 | <label for="give-license-activator"> |
| 28 | {{ form-label }} |
| 29 | </label> |
| 30 | |
| 31 | <input |
| 32 | id="give-license-activator" |
| 33 | type="text" |
| 34 | name="give_license_key" |
| 35 | placeholder="{{ form-placeholder }}" |
| 36 | /> |
| 37 | |
| 38 | <input |
| 39 | data-activate="{{ form-submit-activate }}" |
| 40 | data-activating="{{ form-submit-activating }}" |
| 41 | value="{{ form-submit-value }}" |
| 42 | type="submit" |
| 43 | class="button button-primary" |
| 44 | disabled |
| 45 | /> |
| 46 | </form> |
| 47 | </div> |
| 48 | </div> |
| 49 | </div> |
| 50 | </dialog> |
| 51 |