File size: 2,120 Bytes
f0a40ab
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
52
53
54
{% load static %}
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
    <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap"

        rel="stylesheet">
    <!-- Custom Zenith Flow CSS -->
    <link rel="stylesheet" href="{% static 'css/style.css' %}">

    <title>User Portal | FraudGuard</title>
</head>

<body>

    <!-- Header -->
    <nav class="header-modern">
        <div class="d-flex align-items-center">
            <i class="fas fa-fingerprint text-success fs-3 me-3"></i>
            <div>
                <h5 class="m-0 fw-bold text-white">Analyst<span class="text-success">Portal</span></h5>
            </div>
        </div>

        <div class="d-none d-md-flex align-items-center">
            <a class="nav-link-modern {% if request.path == '/userhome/' %}active{% endif %}"

                href="{% url 'UserHome' %}">Dashboard</a>
            <a class="nav-link-modern {% if 'prediction' in request.path %}active{% endif %}"

                href="{% url 'prediction' %}">Scanner</a>

            <div class="vr bg-secondary mx-3" style="opacity: 0.3; height: 20px;"></div>

            <a href="{% url 'index' %}" class="btn-outline-modern"

                style="padding: 6px 15px; font-size: 0.8rem; border: none; color: #ef4444;">
                <i class="fas fa-power-off me-2"></i> Logout
            </a>
        </div>
    </nav>

    <!-- Main Content -->
    <div class="main-content"

        style="margin-left: 0; padding: 40px; padding-top: 100px; max-width: 1400px; margin: 0 auto;">
        {% block contents %}
        {% endblock %}
    </div>

    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>

</html>