D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
public_html
/
akashstudycircle.site
/
wp-content
/
plugins
/
edhub-core
/
tutor
/
Filename :
login.php
back
Copy
<?php /** * Display single login * * @since v.1.0.0 * @author themeum * @url https://themeum.com * * @package TutorLMS/Templates * @version 1.4.3 */ if ( ! defined( 'ABSPATH' ) ) { exit; } if ( tutils()->get_option( 'disable_tutor_native_login' ) ) { // Refer to login oage header( 'Location: ' . wp_login_url( $_SERVER['REQUEST_SCHEME'] . '://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ) ); exit; } get_header(); ?> <?php do_action( 'tutor/template/login/before/wrap' ); ?> <div <?php tutor_post_class( 'tutor-page-wrap' ); ?>> <div class="tutor-template-segment tutor-login-wrap"> <div class="tutor-login-title"> <h4><?php _e( 'Please Sign-In to view this section', 'edhub-core' ); ?></h4> </div> <div class="tutor-template-login-form"> <?php tutor_load_template( 'global.login' ); ?> </div> </div> </div><!-- .wrap --> <?php do_action( 'tutor/template/login/after/wrap' ); ?> <?php get_footer();