- Create migration for global settings table and add google_ads_customer_id and google_ads_start_date columns to clients table. - Add migration to include product_url column in products_data table. - Insert demo data for campaigns, products, and their history for client 'pomysloweprezenty.pl'. - Implement client management interface with modals for adding and editing clients, including Google Ads Customer ID and data retrieval start date.
45 lines
1.9 KiB
PHP
45 lines
1.9 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="pl">
|
|
<head>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>adsPRO - Logowanie</title>
|
|
<meta name="robots" content="noindex, nofollow">
|
|
<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=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
|
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
|
|
<link rel="stylesheet" type="text/css" href="/layout/style.css">
|
|
<link href="/layout/favicon.png" rel="icon" type="image/x-icon">
|
|
</head>
|
|
<body class="unlogged">
|
|
<div class="login-container">
|
|
<div class="login-brand">
|
|
<div class="brand-content">
|
|
<div class="brand-logo">ads<strong>PRO</strong></div>
|
|
<p class="brand-tagline">System zarządzania reklamami<br>Google ADS & Facebook ADS</p>
|
|
<div class="brand-features">
|
|
<div class="feature">
|
|
<i class="fa-solid fa-chart-line"></i>
|
|
<span>Analiza ROAS i wydajności</span>
|
|
</div>
|
|
<div class="feature">
|
|
<i class="fa-solid fa-bullhorn"></i>
|
|
<span>Zarządzanie kampaniami</span>
|
|
</div>
|
|
<div class="feature">
|
|
<i class="fa-solid fa-box-open"></i>
|
|
<span>Optymalizacja produktów</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="login-form-wrapper">
|
|
<?= $this -> content; ?>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|