<%- include('navbar.ejs') %>

    <div class="container mt-5">

    <!-- Header Row -->
    <div class="d-flex justify-content-between align-items-center mb-3">

        <h3 class="mb-0">
            <%= video.title %>
        </h3>

        <a href="/admin/course-content" 
           class="btn btn-secondary">
            <i class="fa fa-arrow-left"></i> Back
        </a>

    </div>

    <hr>

    <div class="card p-4">

        <video width="100%" height="500" controls controlsList="nodownload">
            <source src="/uploads/videos/<%= video.video_file %>" type="video/mp4">
            Your browser does not support the video tag.
        </video>

    </div>

</div>


    <%- include('footer.ejs') %>