File size: 842 Bytes
e83166d
 
 
 
 
 
 
 
 
 
 
 
06654d0
e83166d
 
 
cb47676
 
 
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
{% 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">
                    <img src="{{ url_for('static', filename='images/LUNA.png') }}" alt="LUNA AI Assistant">
                </div>
            </div>
            <h2 style="margin-top: 1rem;">Thank you for your time,<br>we will get back to you if shortlisted.</h2>
            <p style="margin-top: 0.5rem; font-size: 1rem;">
                Overall performance: {{ score }} ({{ feedback_summary }})
            </p>
        </div>
    </div>
</section>

{% endblock %}