- Changed font from Open Sans to Roboto in layout files. - Added campaign and ad group filters in products main view. - Enhanced product history to include campaign and ad group IDs. - Updated migrations to support new campaign and ad group dimensions in product statistics. - Introduced new migration files for managing campaign types and dropping obsolete columns.
46 lines
1.9 KiB
PHP
46 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=Roboto: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>
|
|
|