Compare commits
No commits in common. "ai-dev" and "master" have entirely different histories.
@ -1,192 +0,0 @@
|
|||||||
|
|
||||||
/* General Body Styles */
|
|
||||||
body {
|
|
||||||
font-family: 'Poppins', sans-serif;
|
|
||||||
background-color: #F4F7F6;
|
|
||||||
color: #333;
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wrapper {
|
|
||||||
display: flex;
|
|
||||||
width: 100%;
|
|
||||||
align-items: stretch;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Sidebar Styles */
|
|
||||||
#sidebar {
|
|
||||||
min-width: 250px;
|
|
||||||
max-width: 250px;
|
|
||||||
background: #FFFFFF;
|
|
||||||
color: #333;
|
|
||||||
transition: all 0.3s;
|
|
||||||
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
#sidebar.active {
|
|
||||||
margin-left: -250px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar-header {
|
|
||||||
padding: 20px;
|
|
||||||
background: #FFFFFF;
|
|
||||||
border-bottom: 1px solid #f0f0f0;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar-header h3 {
|
|
||||||
color: #4A90E2;
|
|
||||||
font-weight: 600;
|
|
||||||
font-size: 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#sidebar ul.components {
|
|
||||||
padding: 20px 0;
|
|
||||||
border-bottom: 1px solid #f0f0f0;
|
|
||||||
flex-grow: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
#sidebar ul p {
|
|
||||||
color: #fff;
|
|
||||||
padding: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#sidebar ul li a {
|
|
||||||
padding: 15px 20px;
|
|
||||||
font-size: 1em;
|
|
||||||
display: block;
|
|
||||||
color: #555;
|
|
||||||
font-weight: 500;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
transition: all 0.2s ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
#sidebar ul li a i {
|
|
||||||
margin-right: 15px;
|
|
||||||
color: #777;
|
|
||||||
transition: all 0.2s ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
#sidebar ul li a:hover {
|
|
||||||
color: #4A90E2;
|
|
||||||
background: #F4F7F6;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#sidebar ul li a:hover i {
|
|
||||||
color: #4A90E2;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#sidebar ul li.active > a, a[aria-expanded="true"] {
|
|
||||||
color: #4A90E2;
|
|
||||||
background: #F4F7F6;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Main Content Styles */
|
|
||||||
#content {
|
|
||||||
width: 100%;
|
|
||||||
padding: 20px;
|
|
||||||
min-height: 100vh;
|
|
||||||
transition: all 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar {
|
|
||||||
padding: 15px 10px;
|
|
||||||
background: #fff;
|
|
||||||
border: none;
|
|
||||||
border-radius: 8px;
|
|
||||||
margin-bottom: 20px;
|
|
||||||
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-btn {
|
|
||||||
box-shadow: none;
|
|
||||||
outline: none !important;
|
|
||||||
border: none;
|
|
||||||
background: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.line {
|
|
||||||
width: 100%;
|
|
||||||
height: 1px;
|
|
||||||
border-bottom: 1px dashed #ddd;
|
|
||||||
margin: 40px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Dashboard Cards */
|
|
||||||
.card {
|
|
||||||
border: none;
|
|
||||||
border-radius: 8px;
|
|
||||||
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
|
|
||||||
transition: transform 0.2s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card:hover {
|
|
||||||
transform: translateY(-5px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-body {
|
|
||||||
padding: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-title {
|
|
||||||
font-weight: 600;
|
|
||||||
color: #333;
|
|
||||||
margin-bottom: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-text {
|
|
||||||
font-size: 2rem;
|
|
||||||
font-weight: 700;
|
|
||||||
color: #4A90E2;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-icon {
|
|
||||||
font-size: 2.5rem;
|
|
||||||
color: #4A90E2;
|
|
||||||
opacity: 0.7;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Quick Actions */
|
|
||||||
.quick-actions .btn {
|
|
||||||
margin-right: 10px;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-primary {
|
|
||||||
background-color: #4A90E2;
|
|
||||||
border-color: #4A90E2;
|
|
||||||
}
|
|
||||||
.btn-primary:hover {
|
|
||||||
background-color: #357ABD;
|
|
||||||
border-color: #357ABD;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-secondary {
|
|
||||||
background-color: #50E3C2;
|
|
||||||
border-color: #50E3C2;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
.btn-secondary:hover {
|
|
||||||
background-color: #38CDB3;
|
|
||||||
border-color: #38CDB3;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Media Queries */
|
|
||||||
@media (max-width: 768px) {
|
|
||||||
#sidebar {
|
|
||||||
margin-left: -250px;
|
|
||||||
}
|
|
||||||
#sidebar.active {
|
|
||||||
margin-left: 0;
|
|
||||||
}
|
|
||||||
#sidebarCollapse span {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,6 +0,0 @@
|
|||||||
|
|
||||||
$(document).ready(function () {
|
|
||||||
$('#sidebarCollapse').on('click', function () {
|
|
||||||
$('#sidebar').toggleClass('active');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
270
index.php
270
index.php
@ -1,151 +1,131 @@
|
|||||||
<!DOCTYPE html>
|
<?php
|
||||||
<html>
|
declare(strict_types=1);
|
||||||
|
@ini_set('display_errors', '1');
|
||||||
|
@error_reporting(E_ALL);
|
||||||
|
@date_default_timezone_set('UTC');
|
||||||
|
|
||||||
|
$phpVersion = PHP_VERSION;
|
||||||
|
$now = date('Y-m-d H:i:s');
|
||||||
|
?>
|
||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<title>New Style</title>
|
||||||
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
<title>iMerhaba - Admin Dashboard</title>
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
|
||||||
<!-- Bootstrap CSS CDN -->
|
<style>
|
||||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
|
:root {
|
||||||
<!-- Custom CSS -->
|
--bg-color-start: #6a11cb;
|
||||||
<link rel="stylesheet" href="assets/css/custom.css">
|
--bg-color-end: #2575fc;
|
||||||
<!-- Google Fonts -->
|
--text-color: #ffffff;
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
--card-bg-color: rgba(255, 255, 255, 0.01);
|
||||||
<!-- Feather Icons -->
|
--card-border-color: rgba(255, 255, 255, 0.1);
|
||||||
<script src="https://unpkg.com/feather-icons"></script>
|
}
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
font-family: 'Inter', sans-serif;
|
||||||
|
background: linear-gradient(45deg, var(--bg-color-start), var(--bg-color-end));
|
||||||
|
color: var(--text-color);
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
min-height: 100vh;
|
||||||
|
text-align: center;
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
body::before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M-10 10L110 10M10 -10L10 110" stroke-width="1" stroke="rgba(255,255,255,0.05)"/></svg>');
|
||||||
|
animation: bg-pan 20s linear infinite;
|
||||||
|
z-index: -1;
|
||||||
|
}
|
||||||
|
@keyframes bg-pan {
|
||||||
|
0% { background-position: 0% 0%; }
|
||||||
|
100% { background-position: 100% 100%; }
|
||||||
|
}
|
||||||
|
main {
|
||||||
|
padding: 2rem;
|
||||||
|
}
|
||||||
|
.card {
|
||||||
|
background: var(--card-bg-color);
|
||||||
|
border: 1px solid var(--card-border-color);
|
||||||
|
border-radius: 16px;
|
||||||
|
padding: 2rem;
|
||||||
|
backdrop-filter: blur(20px);
|
||||||
|
-webkit-backdrop-filter: blur(20px);
|
||||||
|
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
.loader {
|
||||||
|
margin: 1.25rem auto 1.25rem;
|
||||||
|
width: 48px;
|
||||||
|
height: 48px;
|
||||||
|
border: 3px solid rgba(255, 255, 255, 0.25);
|
||||||
|
border-top-color: #fff;
|
||||||
|
border-radius: 50%;
|
||||||
|
animation: spin 1s linear infinite;
|
||||||
|
}
|
||||||
|
@keyframes spin {
|
||||||
|
from { transform: rotate(0deg); }
|
||||||
|
to { transform: rotate(360deg); }
|
||||||
|
}
|
||||||
|
.hint {
|
||||||
|
opacity: 0.9;
|
||||||
|
}
|
||||||
|
.sr-only {
|
||||||
|
position: absolute;
|
||||||
|
width: 1px; height: 1px;
|
||||||
|
padding: 0; margin: -1px;
|
||||||
|
overflow: hidden;
|
||||||
|
clip: rect(0, 0, 0, 0);
|
||||||
|
white-space: nowrap; border: 0;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-size: 3rem;
|
||||||
|
font-weight: 700;
|
||||||
|
margin: 0 0 1rem;
|
||||||
|
letter-spacing: -1px;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
margin: 0.5rem 0;
|
||||||
|
font-size: 1.1rem;
|
||||||
|
}
|
||||||
|
code {
|
||||||
|
background: rgba(0,0,0,0.2);
|
||||||
|
padding: 2px 6px;
|
||||||
|
border-radius: 4px;
|
||||||
|
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
|
||||||
|
}
|
||||||
|
footer {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 1rem;
|
||||||
|
font-size: 0.8rem;
|
||||||
|
opacity: 0.7;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<main>
|
||||||
<div class="wrapper">
|
<div class="card">
|
||||||
<!-- Sidebar -->
|
<h1>Analyzing your requirements and generating your website…</h1>
|
||||||
<nav id="sidebar">
|
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes">
|
||||||
<div class="sidebar-header">
|
<span class="sr-only">Loading…</span>
|
||||||
<h3>iMerhaba</h3>
|
</div>
|
||||||
</div>
|
<p class="hint"><?= ($_SERVER['HTTP_HOST'] ?? '') === 'appwizzy.com' ? 'AppWiZZy' : 'Flatlogic' ?> AI is collecting your requirements and applying the first changes.</p>
|
||||||
|
<p class="hint">This page will update automatically as the plan is implemented.</p>
|
||||||
<ul class="list-unstyled components">
|
<p>Runtime: PHP <code><?= htmlspecialchars($phpVersion) ?></code> — UTC <code><?= htmlspecialchars($now) ?></code></p>
|
||||||
<li class="active">
|
|
||||||
<a href="#"><i data-feather="grid"></i>Dashboard</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="#"><i data-feather="users"></i>Clients</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="#"><i data-feather="truck"></i>Car Rental</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="#"><i data-feather="map"></i>Tourism</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="#"><i data-feather="home"></i>Real Estate</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="#"><i data-feather="briefcase"></i>Business Services</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<!-- Page Content -->
|
|
||||||
<div id="content">
|
|
||||||
<nav class="navbar navbar-expand-lg navbar-light">
|
|
||||||
<div class="container-fluid">
|
|
||||||
<button type="button" id="sidebarCollapse" class="btn btn-info">
|
|
||||||
<i data-feather="menu"></i>
|
|
||||||
</button>
|
|
||||||
<div class="ml-auto">
|
|
||||||
Welcome, Super Admin!
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<h2>Dashboard</h2>
|
|
||||||
<p>Welcome to your control center. Here's a snapshot of your business activities.</p>
|
|
||||||
|
|
||||||
<div class="row mb-4">
|
|
||||||
<!-- Overview Card 1 -->
|
|
||||||
<div class="col-md-6 col-lg-3 mb-3">
|
|
||||||
<div class="card">
|
|
||||||
<div class="card-body d-flex justify-content-between align-items-center">
|
|
||||||
<div>
|
|
||||||
<h5 class="card-title">Today's Bookings</h5>
|
|
||||||
<p class="card-text">12</p>
|
|
||||||
</div>
|
|
||||||
<div class="card-icon">
|
|
||||||
<i data-feather="calendar"></i>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- Overview Card 2 -->
|
|
||||||
<div class="col-md-6 col-lg-3 mb-3">
|
|
||||||
<div class="card">
|
|
||||||
<div class="card-body d-flex justify-content-between align-items-center">
|
|
||||||
<div>
|
|
||||||
<h5 class="card-title">Income (Today)</h5>
|
|
||||||
<p class="card-text">€1,250</p>
|
|
||||||
</div>
|
|
||||||
<div class="card-icon">
|
|
||||||
<i data-feather="dollar-sign"></i>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- Overview Card 3 -->
|
|
||||||
<div class="col-md-6 col-lg-3 mb-3">
|
|
||||||
<div class="card">
|
|
||||||
<div class="card-body d-flex justify-content-between align-items-center">
|
|
||||||
<div>
|
|
||||||
<h5 class="card-title">Pending Contracts</h5>
|
|
||||||
<p class="card-text">4</p>
|
|
||||||
</div>
|
|
||||||
<div class="card-icon">
|
|
||||||
<i data-feather="file-text"></i>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- Overview Card 4 -->
|
|
||||||
<div class="col-md-6 col-lg-3 mb-3">
|
|
||||||
<div class="card">
|
|
||||||
<div class="card-body d-flex justify-content-between align-items-center">
|
|
||||||
<div>
|
|
||||||
<h5 class="card-title">New Leads</h5>
|
|
||||||
<p class="card-text">8</p>
|
|
||||||
</div>
|
|
||||||
<div class="card-icon">
|
|
||||||
<i data-feather="star"></i>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="line"></div>
|
|
||||||
|
|
||||||
<h4>Quick Actions</h4>
|
|
||||||
<div class="quick-actions mt-3">
|
|
||||||
<a href="#" class="btn btn-primary"><i data-feather="plus-circle"></i> Add Client</a>
|
|
||||||
<a href="#" class="btn btn-secondary"><i data-feather="file-plus"></i> Create Invoice</a>
|
|
||||||
<a href="#" class="btn btn-primary"><i data-feather="calendar"></i> New Booking</a>
|
|
||||||
<a href="#" class="btn btn-secondary"><i data-feather="briefcase"></i> Generate Offer</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</main>
|
||||||
|
<footer>
|
||||||
<!-- jQuery CDN - Slim version (=without AJAX) -->
|
Page updated: <?= htmlspecialchars($now) ?> (UTC)
|
||||||
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
</footer>
|
||||||
<!-- Popper.JS -->
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js" integrity="sha384-cs/chFZiN24E4KMATLdqdvsezGxaGsi4hLGOzlXwp5UZB1LY//20VyM2taTB4QvJ" crossorigin="anonymous"></script>
|
|
||||||
<!-- Bootstrap JS -->
|
|
||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js" integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9k43UfT4" crossorigin="anonymous"></script>
|
|
||||||
<!-- Custom JS -->
|
|
||||||
<script src="assets/js/main.js"></script>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
feather.replace();
|
|
||||||
</script>
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
Loading…
x
Reference in New Issue
Block a user