153 lines
6.2 KiB
PHP
153 lines
6.2 KiB
PHP
<?php
|
|
session_start();
|
|
require_once __DIR__ . '/db/config.php';
|
|
require_once __DIR__ . '/includes/audit.php';
|
|
|
|
// If user is not logged in, redirect to login page
|
|
if (!isset($_SESSION['user_id'])) {
|
|
header('Location: index.php');
|
|
exit;
|
|
}
|
|
|
|
$displayName = $_SESSION['user_display_name'] ?? 'User';
|
|
$pdo = db();
|
|
|
|
// Ensure a client_id is provided
|
|
if (!isset($_GET['client_id']) || empty($_GET['client_id'])) {
|
|
header('Location: dashboard.php?error=noclient');
|
|
exit;
|
|
}
|
|
|
|
$client_id = $_GET['client_id'];
|
|
|
|
// Fetch client details to display
|
|
$stmt = $pdo->prepare("SELECT name FROM clients WHERE client_id = ?");
|
|
$stmt->execute([$client_id]);
|
|
$client = $stmt->fetch(PDO::FETCH_ASSOC);
|
|
|
|
if (!$client) {
|
|
header('Location: dashboard.php?error=invalidclient');
|
|
exit;
|
|
}
|
|
|
|
$errors = [];
|
|
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
|
$name = trim($_POST['name'] ?? '');
|
|
$username = trim($_POST['username'] ?? '');
|
|
$password = $_POST['password'] ?? ''; // Do not trim password
|
|
$url = trim($_POST['url'] ?? '');
|
|
$notes = trim($_POST['notes'] ?? '');
|
|
|
|
if (empty($name)) {
|
|
$errors[] = 'Credential name is required.';
|
|
}
|
|
if (empty($password)) {
|
|
$errors[] = 'Password is required.';
|
|
}
|
|
|
|
if (empty($errors)) {
|
|
// For now, we will store passwords in plain text. This is NOT secure and will be updated.
|
|
// In a real-world scenario, use a proper encryption method.
|
|
$insertStmt = $pdo->prepare(
|
|
"INSERT INTO credentials (client_id, name, username, password, url, notes, created_by, updated_by) VALUES (?, ?, ?, ?, ?, ?, ?, ?)"
|
|
);
|
|
$user_id = $_SESSION['user_id'];
|
|
|
|
try {
|
|
$insertStmt->execute([$client_id, $name, $username, $password, $url, $notes, $user_id, $user_id]);
|
|
$newCredentialId = $pdo->lastInsertId();
|
|
log_audit_event('credential_create', $user_id, 'credential', $newCredentialId);
|
|
header("Location: dashboard.php?client_id=$client_id&status=credential_added");
|
|
exit;
|
|
} catch (PDOException $e) {
|
|
$errors[] = "Database error: " . $e->getMessage();
|
|
}
|
|
}
|
|
}
|
|
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en" data-bs-theme="light">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Add Credential - FlexPass</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/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">
|
|
</head>
|
|
<body>
|
|
|
|
<nav class="navbar navbar-expand-lg bg-body-tertiary">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand" href="dashboard.php">
|
|
<i class="bi bi-shield-lock"></i> FlexPass
|
|
</a>
|
|
<div class="collapse navbar-collapse">
|
|
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="dashboard.php">Clients</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<div class="container mt-4">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-8">
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h1 class="h4 mb-0">Add New Credential for <?php echo htmlspecialchars($client['name']); ?></h1>
|
|
</div>
|
|
<div class="card-body">
|
|
<?php if (!empty($errors)): ?>
|
|
<div class="alert alert-danger">
|
|
<ul class="mb-0">
|
|
<?php foreach ($errors as $error): ?>
|
|
<li><?php echo htmlspecialchars($error); ?></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<form action="add-credential.php?client_id=<?php echo htmlspecialchars($client_id); ?>" method="POST">
|
|
<div class="mb-3">
|
|
<label for="name" class="form-label">Credential Name</label>
|
|
<input type="text" class="form-control" id="name" name="name" required>
|
|
<div class="form-text">A descriptive name, e.g., "Primary Admin Login" or "Database Access".</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-6 mb-3">
|
|
<label for="username" class="form-label">Username</label>
|
|
<input type="text" class="form-control" id="username" name="username">
|
|
</div>
|
|
<div class="col-md-6 mb-3">
|
|
<label for="password" class="form-label">Password</label>
|
|
<input type="password" class="form-control" id="password" name="password" required>
|
|
</div>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="url" class="form-label">URL</label>
|
|
<input type="url" class="form-control" id="url" name="url" placeholder="https://example.com/login">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="notes" class="form-label">Notes</label>
|
|
<textarea class="form-control" id="notes" name="notes" rows="3"></textarea>
|
|
</div>
|
|
<div class="d-flex justify-content-end">
|
|
<a href="dashboard.php?client_id=<?php echo htmlspecialchars($client_id); ?>" class="btn btn-secondary me-2">Cancel</a>
|
|
<button type="submit" class="btn btn-primary">Add Credential</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script src="assets/js/main.js"></script>
|
|
</body>
|
|
</html>
|