first commit

This commit is contained in:
2024-07-15 11:28:08 +02:00
commit f52d538ea5
21891 changed files with 6161164 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<?php
/**
* Lost password link
*/
if ( ! isset( $settings['lost_password_link'] ) || ! filter_var( $settings['lost_password_link'], FILTER_VALIDATE_BOOLEAN ) ) {
return;
}
?>
<a href="<?php echo esc_url( wp_lostpassword_url() ); ?>" class="jet-login-lost-password-link"><?php
echo esc_html( $settings['lost_password_link_text'] );
?></a>

View File

@@ -0,0 +1,15 @@
<?php
/**
* Login messages
*/
$message = wp_cache_get( 'jet-login-messages' );
if ( ! $message ) {
return;
}
?>
<div class="jet-login-message"><?php
echo $message;
?></div>