| 1 |
<?php |
| 2 |
/** |
| 3 |
* Outputs the Member Content Login block's login form. |
| 4 |
* |
| 5 |
* The heading and text displayed above the login form on Member Content aren't |
| 6 |
* output here, as they refer to reading the Member Content that the subscriber |
| 7 |
* is logging in to view. |
| 8 |
* |
| 9 |
* @package ConvertKit |
| 10 |
* @author ConvertKit |
| 11 |
*/ |
| 12 |
|
| 13 |
?> |
| 14 |
<div id="convertkit-restrict-content" class="convertkit-login <?php echo esc_attr( implode( ' ', map_deep( $css_classes, 'sanitize_html_class' ) ) ); ?>" style="<?php echo esc_attr( implode( ';', $css_styles ) ); ?>"> |
| 15 |
<div class="convertkit-restrict-content-actions convertkit-restrict-content-content"> |
| 16 |
<?php |
| 17 |
require 'login-email.php'; |
| 18 |
?> |
| 19 |
</div> |
| 20 |
</div> |
| 21 |
|