activate.php
1 year ago
compatible-plugins.php
1 year ago
config.php
1 year ago
connect-jp.php
1 year ago
enter.php
2 years ago
get.php
1 year ago
logo.php
2 years ago
notice.php
1 year ago
predefined.php
1 year ago
setup.php
1 year ago
start.php
1 year ago
stats.php
1 year ago
title.php
6 years ago
enter.php
15 lines
| 1 | <div class="akismet-enter-api-key-box centered"> |
| 2 | <button class="akismet-enter-api-key-box__reveal"><?php esc_html_e( 'Manually enter an API key', 'akismet' ); ?></button> |
| 3 | <div class="akismet-enter-api-key-box__form-wrapper"> |
| 4 | <form action="<?php echo esc_url( Akismet_Admin::get_page_url() ); ?>" method="post"> |
| 5 | <?php wp_nonce_field( Akismet_Admin::NONCE ); ?> |
| 6 | <input type="hidden" name="action" value="enter-key"> |
| 7 | <h3 class="akismet-enter-api-key-box__header" id="akismet-enter-api-key-box__header"><?php esc_html_e( 'Enter your API key', 'akismet' ); ?></h3> |
| 8 | <div class="akismet-enter-api-key-box__input-wrapper"> |
| 9 | <input id="key" name="key" type="text" size="15" value="" placeholder="<?php esc_attr_e( 'API key', 'akismet' ); ?>" class="akismet-enter-api-key-box__key-input regular-text code" aria-labelledby="akismet-enter-api-key-box__header"> |
| 10 | <input type="submit" name="submit" id="submit" class="akismet-button" value="<?php esc_attr_e( 'Connect with API key', 'akismet' ); ?>"> |
| 11 | </div> |
| 12 | </form> |
| 13 | </div> |
| 14 | </div> |
| 15 |