mailin
Last commit date
css
13 years ago
js
13 years ago
lang
13 years ago
api_form.php
13 years ago
compatibility.php
13 years ago
cron.php
13 years ago
listings.php
13 years ago
mailin.php
13 years ago
mailin_widget.php
13 years ago
mailinapi.class.php
13 years ago
readme.txt
13 years ago
api_form.php
33 lines
| 1 | <div class="mailin_row"> |
| 2 | <form method="post" action="options-general.php?page=mailin_options"> |
| 3 | <h3> |
| 4 | <?php esc_html_e( 'Please provide your login information' , |
| 5 | 'mailin_i18n');?> |
| 6 | </h3> |
| 7 | <?php esc_html_e('To start using the Mailin plugin, please enter your Mailin API Key below.', 'mailin_i18n'); ?> |
| 8 | <br/> |
| 9 | <?php |
| 10 | echo esc_html_e( "Don't have a Mailin account?", "mailin_i18n").' '; |
| 11 | echo '<a href="http://www.mailin.fr/#subscriptionform" target="_blank">'.__( "Sign up", "mailin_i18n"). '</a>'; |
| 12 | ?> |
| 13 | <br/> |
| 14 | <table class="form-table"> |
| 15 | <tr valign="top"> |
| 16 | <td scope="row" width="50"> |
| 17 | <?php esc_html_e( 'API Key', 'mailin_i18n'); ?>:</td> |
| 18 | <td> |
| 19 | <input name="mailin_apikey" type="text" id="mailin_apikey" class="code" |
| 20 | value="<?php echo esc_attr($api_key); ?>" size="32" /> |
| 21 | </td> |
| 22 | </tr> |
| 23 | <tr> |
| 24 | <td colspan="2"> |
| 25 | <input type="hidden" name="mailin_form_action" value="apikey_update" /> |
| 26 | <input type="submit" name="Submit" value="<?php esc_attr_e('Validate & Save' , 'mailin_i18n');?>" |
| 27 | class="button" /> |
| 28 | </td> |
| 29 | </tr> |
| 30 | </table> |
| 31 | </form> |
| 32 | </div> |
| 33 |