JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "player.blade.php"
Full Path: /home2/yvrgircc/public_html/ariseskilltech.com/resources/views/class_record/player.blade.php
File size: 3.56 KB
MIME-type: text/html
Charset: utf-8
@if ($class->enrolled_user && auth()->user()->id)
<!doctype html>
<html lang="en">
<head>
{{ config(['app.name' => get_settings('system_title')]) }}
<title>{{ $class->title }} | {{ config('app.name') }}</title>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link rel="shortcut icon" href="{{ asset(get_frontend_settings('favicon')) }}" />
<link rel="stylesheet" href="{{ asset('assets/frontend/default/css/bootstrap.min.css') }}">
<script src="{{ asset('assets/frontend/default/js/jquery-3.7.1.min.js') }}"></script>
<style>
body {
overflow: hidden;
}
video {
width: 100%;
height: 101vh;
}
.content-player {
position: relative;
}
.back-btn {
position: absolute;
top: 30px;
left: 20px;
z-index: 999;
border-radius: 50px;
background: rgba(127, 127, 127, 0.38);
text-decoration: none;
width: 45px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
transition: width 0.3s;
}
.back-btn:hover {
width: 120px;
}
.back-btn .icon {
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
width: 45px;
height: 45px;
}
.back-btn .icon span {
display: flex;
align-items: center;
justify-content: center;
}
.back-btn span svg path {
fill: #a5a5a5;
}
.icon-label {
width: 75px;
height: 75px;
display: flex;
align-items: center;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
color: #a5a5a5;
}
</style>
</head>
<body>
<main>
<div class="content-player bg-dark">
<a href="{{ route('my.bootcamp.details', $class->bootcamp_slug) }}" class="eBtn gradient back-btn">
<div class="icon">
<span class="d-inline-flex">
<svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" data-name="Layer 1"
viewBox="0 0 24 24" width="25" height="25">
<path
d="m13.646,18.342l-5.281-5.281c-.283-.283-.439-.66-.439-1.061s.156-.777.439-1.061l5.281-5.281.707.707-5.281,5.281c-.094.095-.146.22-.146.354s.052.259.146.354l5.281,5.281-.707.707Z" />
</svg>
</span>
</div>
<span class="icon-label">{{ get_phrase('Go Back') }}</span>
</a>
<video id="player" playsinline controls oncontextmenu="return false;" controlslist="nodownload">
<source src="{{ asset($class->file) }}" type="video/mp4">
</video>
@include('course_player.player_config')
</div>
</main>
</body>
</html>
@endif