File size: 2,044 Bytes
e83166d
 
 
 
 
 
 
 
 
 
 
 
06654d0
e83166d
 
b5d621a
 
 
 
 
 
 
 
e83166d
 
 
 
b5d621a
 
 
 
 
 
 
 
 
4fb152a
 
 
b5d621a
4fb152a
b5d621a
 
4fb152a
b5d621a
 
4fb152a
b5d621a
 
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{% 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>
            <span class="eyebrow"><span class="dot"></span> Interview Complete</span>
            <h2 style="margin-top: 1rem;">Thank you for your time,<br>we'll get back to you if shortlisted.</h2>
            <div class="score-card">
                <span class="score-label">Overall performance</span>
                <span class="score-value">{{ score }}</span>
                <span class="score-summary">{{ feedback_summary }}</span>
            </div>
            <a href="{{ url_for('jobs') }}" class="btn btn-outline" style="margin-top:1.75rem;">Back to Jobs</a>
        </div>
    </div>
</section>

<style>
    .score-card {
        margin-top: 1.5rem;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: .35rem;
        padding: 1.5rem 2.5rem;
        border-radius: var(--r, 18px);
        background: var(--surface, #fff);
        border: 1px solid var(--line, #e7e9f2);
        box-shadow: 0 18px 45px rgba(13, 20, 40, .12);
    }
    .score-label { color: var(--muted, #5b6478); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }
    .score-value {
        font-family: 'Space Grotesk', sans-serif; font-size: 2.4rem; font-weight: 700; line-height: 1.1;
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    }
    .score-summary { color: var(--ink, #0b1020); font-size: 1rem; max-width: 420px; }
</style>

{% endblock %}