common
2 years ago
course
5 months ago
lesson
8 months ago
quiz
9 months ago
video
8 months ago
next-previous-pagination.php
1 year ago
password-protected.php
1 year ago
password-protected.php
66 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Template for password protected course-bundle. |
| 4 | * |
| 5 | * @package Tutor\Templates |
| 6 | * @author Themeum <support@themeum.com> |
| 7 | * @link https://themeum.com |
| 8 | * @since 3.0.0 |
| 9 | */ |
| 10 | |
| 11 | $course_id = get_the_ID(); |
| 12 | $is_enrolled = tutor_utils()->is_enrolled( $course_id, get_current_user_id() ); |
| 13 | $password_error = get_transient( 'tutor_post_password_error' ); |
| 14 | ?> |
| 15 | <?php tutor_utils()->tutor_custom_header(); ?> |
| 16 | |
| 17 | <div class="tutor-container tutor-password-protected-course"> |
| 18 | <?php ( isset( $is_enrolled ) && $is_enrolled ) ? tutor_course_enrolled_lead_info() : tutor_course_lead_info(); ?> |
| 19 | <?php tutor_utils()->has_video_in_single() ? tutor_course_video() : get_tutor_course_thumbnail(); ?> |
| 20 | |
| 21 | <div class="tutor-modal tutor-is-active"> |
| 22 | <div class="tutor-modal-overlay"></div> |
| 23 | <div class="tutor-modal-window" style="max-width: 834px;"> |
| 24 | <div class="tutor-modal-content tutor-bg-white tutor-p-40"> |
| 25 | <a href="<?php echo esc_url( tutor_utils()->course_archive_page_url() ); ?>" class="tutor-iconic-btn tutor-modal-close-o"> |
| 26 | <span class="tutor-icon-times" area-hidden="true"></span> |
| 27 | </a> |
| 28 | <div class="tutor-row"> |
| 29 | <div class="tutor-col-md-7"> |
| 30 | <div class="tutor-d-flex tutor-flex-column"> |
| 31 | <div class="tutor-fs-3 tutor-mb-12"> |
| 32 | <i class="tutor-icon-lock-line"></i> |
| 33 | </div> |
| 34 | <span class="tutor-locked-badge tutor-mb-8"><?php esc_html_e( 'Course is locked', 'tutor' ); ?></span> |
| 35 | <h3 class="tutor-fw-medium tutor-fs-5 tutor-color-black"><?php the_title(); ?></h3> |
| 36 | </div> |
| 37 | </div> |
| 38 | <div class="tutor-col-md-5"> |
| 39 | <form action="<?php echo esc_url( site_url( 'wp-login.php?action=postpass', 'login_post' ) ); ?>" method="post" class="tutor-mt-56"> |
| 40 | <div class="tutor-mb-12"> |
| 41 | <label class="tutor-form-label tutor-color-secondary"> |
| 42 | <?php esc_html_e( 'Enter your password', 'tutor' ); ?> |
| 43 | </label> |
| 44 | <input type="password" name="post_password" class="tutor-form-control" /> |
| 45 | <input type="hidden" name="course_id" value="<?php echo esc_attr( $course_id ); ?>" /> |
| 46 | <?php echo ! empty( $password_error ) ? '<span class="tutor-color-danger tutor-fs-7 tutor-fw-medium">' . esc_html( $password_error ) . '</span>' : ''; ?> |
| 47 | </div> |
| 48 | <div class="tutor-d-flex tutor-gap-1"> |
| 49 | <input type="checkbox" id="tutor-protected-show-password" class="tutor-form-check-input"> |
| 50 | <label for="tutor-protected-show-password" class="tutor-fs-7 tutor-color-hint"> |
| 51 | <?php esc_html_e( 'Show password', 'tutor' ); ?> |
| 52 | </label> |
| 53 | </div> |
| 54 | <div class="tutor-mt-24 tutor-text-right"> |
| 55 | <button type="submit" class="tutor-btn tutor-btn-primary"><?php esc_html_e( 'Submit', 'tutor' ); ?></button> |
| 56 | </div> |
| 57 | </form> |
| 58 | </div> |
| 59 | </div> |
| 60 | </div> |
| 61 | </div> |
| 62 | </div> |
| 63 | </div> |
| 64 | <?php delete_transient( 'tutor_post_password_error' ); ?> |
| 65 | <?php tutor_utils()->tutor_custom_footer(); ?> |
| 66 |