114 lines
4.8 KiB
PHP
114 lines
4.8 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Cablecrm</title>
|
|
<meta name="description" content="Built with Flatlogic Generator">
|
|
<meta name="keywords" content="cable tv billing, crm, subscription management, invoice generator, customer management, billing dashboard, postpaid billing, revenue reporting, flatlogic generator">
|
|
<meta property="og:title" content="Cablecrm">
|
|
<meta property="og:description" content="Built with Flatlogic Generator">
|
|
<meta property="og:image" content="">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:image" content="">
|
|
|
|
<!-- Bootstrap 5 CSS -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<!-- Bootstrap Icons -->
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
|
<!-- Google Fonts (Poppins) -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
|
|
<!-- Custom CSS -->
|
|
<link rel="stylesheet" href="assets/css/custom.css">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="sidebar">
|
|
<h4 class="text-white p-2 mb-4">CableCRM</h4>
|
|
<ul class="nav flex-column">
|
|
<li class="nav-item">
|
|
<a class="nav-link active" href="#"><i class="bi bi-grid-1x2-fill"></i> Dashboard</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#"><i class="bi bi-people-fill"></i> Customers</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#"><i class="bi bi-receipt"></i> Invoices</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#"><i class="bi bi-box-seam"></i> Plans</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#"><i class="bi bi-bar-chart-fill"></i> Reports</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="main-content">
|
|
<div class="container-fluid">
|
|
<h1 class="mb-4">Dashboard Overview</h1>
|
|
|
|
<div class="row g-4">
|
|
<!-- KPI Card: Active Subscribers -->
|
|
<div class="col-md-6 col-xl-3">
|
|
<div class="kpi-card d-flex justify-content-between align-items-center">
|
|
<div>
|
|
<h5>Active Subscribers</h5>
|
|
<span class="value">1,425</span>
|
|
</div>
|
|
<div class="icon">
|
|
<i class="bi bi-person-check-fill"></i>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- KPI Card: Monthly Recurring Revenue (MRR) -->
|
|
<div class="col-md-6 col-xl-3">
|
|
<div class="kpi-card d-flex justify-content-between align-items-center">
|
|
<div>
|
|
<h5>MRR</h5>
|
|
<span class="value">$25,800</span>
|
|
</div>
|
|
<div class="icon">
|
|
<i class="bi bi-cash-stack"></i>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- KPI Card: Overdue Amount -->
|
|
<div class="col-md-6 col-xl-3">
|
|
<div class="kpi-card d-flex justify-content-between align-items-center">
|
|
<div>
|
|
<h5>Overdue Amount</h5>
|
|
<span class="value">$1,240</span>
|
|
</div>
|
|
<div class="icon">
|
|
<i class="bi bi-exclamation-triangle-fill"></i>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- KPI Card: Collection Rate -->
|
|
<div class="col-md-6 col-xl-3">
|
|
<div class="kpi-card d-flex justify-content-between align-items-center">
|
|
<div>
|
|
<h5>Collection Rate</h5>
|
|
<span class="value">95.4%</span>
|
|
</div>
|
|
<div class="icon">
|
|
<i class="bi bi-pie-chart-fill"></i>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Bootstrap 5 JS -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
<!-- Custom JS -->
|
|
<script src="assets/js/main.js"></script>
|
|
</body>
|
|
</html> |