Server IP : 172.67.214.6 / Your IP : 216.73.216.73 Web Server : LiteSpeed System : Linux premium900.web-hosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : redwjova ( 1790) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/redwjova/fyntric.com/wp-content/themes/smart-mag/partials/auth-modal/ |
Upload File : |
<?php /** * Authentication modal. */ // Whether registrations are open. $registrations = get_option('users_can_register'); // Social services. $services = Bunyad::get('social')->get_services(); ?> <div id="auth-modal" class="ts-modal auth-modal" aria-hidden="true"> <div class="ts-modal-overlay" tabindex="-1" data-micromodal-close> <div class="ts-modal-container" role="dialog" aria-modal="true" aria-labelledby="auth-modal-title"> <header class="ts-modal-header"> <h3 id="auth-modal-title" class="visuallyhidden"> <?php echo esc_html_x('Sign In or Register', 'aria', 'bunyad'); ?> </h3> <button class="close-btn" aria-label="<?php esc_attr_e('Close modal', 'bunyad'); ?>" data-micromodal-close></button> </header> <div class="auth-modal-content auth-widget"> <div class="auth-modal-login"> <?php get_template_part('partials/auth-modal/login'); ?> </div> <?php if ($registrations): ?> <div class="auth-modal-register"> <?php get_template_part('partials/auth-modal/register'); ?> </div> <?php endif; ?> </div> </div> </div> </div>