File size: 1,079 Bytes
e83166d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{% extends "base.html" %}

{% block title %}Interview Complete - Codingo{% endblock %}

{% block hero %}
<section class="hero">
    <div class="container">
        <div class="hero-content">
            <!-- Rounded Video Container -->
            <div class="luna-avatar-container">
                <div class="luna-glow"></div>
                <div class="luna-avatar">
                    <video id="closingVideo" autoplay playsinline>
                        <source src="{{ url_for('static', filename='videos/AI_Interview_Closing_Statement_Video.mp4') }}" type="video/mp4">
                        Your browser does not support the video tag.
                    </video>
                </div>
            </div>
            <h2 style="margin-top: 1rem;">Thank you for your time,<br>we will get back to you if shortlisted.</h2>
        </div>
    </div>
</section>

<script>
    const video = document.getElementById('closingVideo');
    video.addEventListener('ended', function() {
        window.location.href = "{{ url_for('index') }}";
    });
</script>
{% endblock %}