Compare commits

...

1 Commits

Author SHA1 Message Date
Flatlogic Bot
38ee273f52 Zamba crm v 1.0 2025-10-10 11:23:53 +00:00
6 changed files with 274 additions and 4 deletions

32
assets/css/custom.css Normal file
View File

@ -0,0 +1,32 @@
body {
font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}
.btn-primary {
background-color: #E53935;
border-color: #E53935;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
background-color: #C62828;
border-color: #C62828;
}
.navbar-dark .navbar-brand {
color: #fff;
}
.navbar-dark .nav-link.active {
color: #fff;
font-weight: 500;
}
.card {
border-radius: 0.5rem;
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.modal-header {
background-color: #f8f9fa;
border-bottom: 1px solid #dee2e6;
}

View File

@ -8,10 +8,21 @@ define('DB_PASS', 'e45f2778-db1f-450c-99c6-29efb4601472');
function db() {
static $pdo;
if (!$pdo) {
$pdo = new PDO('mysql:host='.DB_HOST.';dbname='.DB_NAME.';charset=utf8mb4', DB_USER, DB_PASS, [
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
]);
try {
// Connect without specifying a database
$pdo_init = new PDO('mysql:host='.DB_HOST, DB_USER, DB_PASS);
$pdo_init->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
// Create the database if it doesn't exist
$pdo_init->exec("CREATE DATABASE IF NOT EXISTS `".DB_NAME."`");
// Now connect to the specific database
$pdo = new PDO('mysql:host='.DB_HOST.';dbname='.DB_NAME.';charset=utf8mb4', DB_USER, DB_PASS, [
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
]);
} catch (PDOException $e) {
die("DB connection failed: " . $e->getMessage());
}
}
return $pdo;
}

24
db/setup.php Normal file
View File

@ -0,0 +1,24 @@
<?php
require_once 'config.php';
try {
$pdo = db();
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$sql = "CREATE TABLE IF NOT EXISTS leads (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(255) NOT NULL,
company VARCHAR(255),
email VARCHAR(255) NOT NULL,
message TEXT,
status VARCHAR(50) DEFAULT 'New',
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
)";
$pdo->exec($sql);
echo "Database setup complete. Table 'leads' created successfully.";
} catch (PDOException $e) {
die("Database setup failed: " . $e->getMessage());
}

5
includes/footer.php Normal file
View File

@ -0,0 +1,5 @@
</main>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>

40
includes/header.php Normal file
View File

@ -0,0 +1,40 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zamba crm</title>
<meta name="description" content="Built with Flatlogic Generator">
<meta name="keywords" content="crm, project management, sales, leads, deals, project planning, task management, flatlogic">
<meta property="og:title" content="Zamba crm">
<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="">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<link rel="stylesheet" href="assets/css/custom.css">
<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=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<body class="bg-light">
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="leads.php">Zamba CRM</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" href="leads.php">Leads</a>
</li>
</ul>
</div>
</div>
</nav>
<main class="container mt-4">

158
leads.php Normal file
View File

@ -0,0 +1,158 @@
<?php
session_start();
require_once 'db/config.php';
$success_message = '';
if (isset($_SESSION['success_message'])) {
$success_message = $_SESSION['success_message'];
unset($_SESSION['success_message']);
}
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
$name = trim($_POST['name'] ?? '');
$email = trim($_POST['email'] ?? '');
$company = trim($_POST['company'] ?? '');
$message = trim($_POST['message'] ?? '');
$errors = [];
if (empty($name)) {
$errors[] = 'Name is required.';
}
if (empty($email)) {
$errors[] = 'Email is required.';
} elseif (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
$errors[] = 'Invalid email format.';
}
if (empty($errors)) {
try {
$pdo = db();
$sql = "INSERT INTO leads (name, email, company, message) VALUES (:name, :email, :company, :message)";
$stmt = $pdo->prepare($sql);
$stmt->execute([
':name' => $name,
':email' => $email,
':company' => $company,
':message' => $message
]);
$_SESSION['success_message'] = 'Lead added successfully!';
header("Location: leads.php");
exit;
} catch (PDOException $e) {
$errors[] = "Database error: " . $e->getMessage();
}
}
// If there are errors, the script will continue and display them below
}
try {
$pdo = db();
$stmt = $pdo->query("SELECT id, name, company, email, status, created_at FROM leads ORDER BY created_at DESC");
$leads = $stmt->fetchAll();
} catch (PDOException $e) {
die("Could not fetch leads: " . $e->getMessage());
}
require_once 'includes/header.php';
?>
<?php if ($success_message): ?>
<div class="alert alert-success alert-dismissible fade show" role="alert">
<?php echo htmlspecialchars($success_message); ?>
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
<?php endif; ?>
<?php if (!empty($errors)): ?>
<div class="alert alert-danger">
<strong>Error!</strong> Please correct the following issues:
<ul>
<?php foreach ($errors as $error): ?>
<li><?php echo htmlspecialchars($error); ?></li>
<?php endforeach; ?>
</ul>
</div>
<?php endif; ?>
<div class="card">
<div class="card-header d-flex justify-content-between align-items-center">
<h1 class="h4 mb-0">Leads</h1>
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#newLeadModal">
<i class="bi bi-plus-lg"></i> New Lead
</button>
</div>
<div class="card-body">
<div class="table-responsive">
<table class="table table-hover">
<thead class="table-light">
<tr>
<th>Name</th>
<th>Company</th>
<th>Email</th>
<th>Status</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<?php if (empty($leads)): ?>
<tr>
<td colspan="5" class="text-center text-muted">No leads found. Add one to get started!</td>
</tr>
<?php else: ?>
<?php foreach ($leads as $lead): ?>
<tr>
<td><?php echo htmlspecialchars($lead['name']); ?></td>
<td><?php echo htmlspecialchars($lead['company']); ?></td>
<td><?php echo htmlspecialchars($lead['email']); ?></td>
<td><span class="badge bg-secondary"><?php echo htmlspecialchars($lead['status']); ?></span></td>
<td><?php echo date("M d, Y", strtotime($lead['created_at'])); ?></td>
</tr>
<?php endforeach; ?>
<?php endif; ?>
</tbody>
</table>
</div>
</div>
</div>
<!-- New Lead Modal -->
<div class="modal fade" id="newLeadModal" tabindex="-1" aria-labelledby="newLeadModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="newLeadModalLabel">Create New Lead</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form action="leads.php" method="POST">
<div class="modal-body">
<div class="mb-3">
<label for="name" class="form-label">Name</label>
<input type="text" class="form-control" id="name" name="name" required>
</div>
<div class="mb-3">
<label for="company" class="form-label">Company</label>
<input type="text" class="form-control" id="company" name="company">
</div>
<div class="mb-3">
<label for="email" class="form-label">Email</label>
<input type="email" class="form-control" id="email" name="email" required>
</div>
<div class="mb-3">
<label for="message" class="form-label">Message</label>
<textarea class="form-control" id="message" name="message" rows="3"></textarea>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
<button type="submit" class="btn btn-primary">Save Lead</button>
</div>
</form>
</div>
</div>
</div>
<?php require_once 'includes/footer.php'; ?>