Codingo / backend /templates /closing.html
husseinelsaadi's picture
updated
e83166d
raw
history blame
1.08 kB
{% 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 %}