dashboard
6 years ago
email
6 years ago
global
6 years ago
loop
6 years ago
profile
6 years ago
shortcode
6 years ago
single
6 years ago
widget
6 years ago
archive-course.php
6 years ago
course-none.php
6 years ago
dashboard.php
6 years ago
login.php
6 years ago
single-assignment.php
6 years ago
single-course-enrolled-announcements.php
6 years ago
single-course-enrolled-overview.php
6 years ago
single-course-enrolled-questions.php
6 years ago
single-course-enrolled.php
6 years ago
single-course.php
6 years ago
single-lesson.php
6 years ago
single-preview-lesson.php
6 years ago
single-quiz.php
6 years ago
student-public-profile.php
6 years ago
login.php
38 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Display single login |
| 5 | * |
| 6 | * @since v.1.0.0 |
| 7 | * @author themeum |
| 8 | * @url https://themeum.com |
| 9 | */ |
| 10 | |
| 11 | if ( ! defined( 'ABSPATH' ) ) |
| 12 | exit; |
| 13 | |
| 14 | get_header(); |
| 15 | |
| 16 | ?> |
| 17 | |
| 18 | <?php do_action('tutor/template/login/before/wrap'); ?> |
| 19 | <div <?php tutor_post_class('tutor-page-wrap'); ?>> |
| 20 | |
| 21 | <div class="tutor-template-segment tutor-login-wrap"> |
| 22 | <div class="tutor-login-title"> |
| 23 | <h4><?php _e('Please Sign-In to view this section', 'tutor'); ?></h4> |
| 24 | </div> |
| 25 | |
| 26 | <div class="tutor-template-login-form"> |
| 27 | <?php tutor_load_template( 'global.login' ); ?> |
| 28 | </div> |
| 29 | </div> |
| 30 | </div><!-- .wrap --> |
| 31 | |
| 32 | <?php do_action('tutor/template/login/after/wrap'); ?> |
| 33 | |
| 34 | |
| 35 | |
| 36 | <?php |
| 37 | get_footer(); |
| 38 |