Spaces:
Sleeping
Sleeping
| {% load static %} | |
| <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> |