This commit is contained in:
Flatlogic Bot 2025-11-29 16:02:59 +00:00
parent 5306b9571b
commit 0c66a3d3f1
3 changed files with 317 additions and 135 deletions

175
assets/css/style.css Normal file
View File

@ -0,0 +1,175 @@
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Inter:wght@400;500&display=swap');
:root {
--primary-color: #0D9488;
--primary-gradient-start: #14B8A6;
--primary-gradient-end: #2DD4BF;
--accent-color: #F0F9FF;
--background-color: #FFFFFF;
--surface-color: #F8FAFC;
--text-color: #0F172A;
--subtle-text-color: #64748B;
--border-color: #E2E8F0;
--radius-md: 0.5rem;
--radius-full: 9999px;
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--background-color);
color: var(--text-color);
margin: 0;
padding: 2rem;
}
h1, h2 {
font-family: 'Poppins', sans-serif;
font-weight: 600;
color: var(--primary-color);
}
.container {
max-width: 800px;
margin: 0 auto;
}
.header {
text-align: center;
margin-bottom: 3rem;
padding-bottom: 1rem;
border-bottom: 1px solid var(--border-color);
}
.header h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
background: linear-gradient(to right, var(--primary-gradient-start), var(--primary-color));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.entry-form {
background-color: var(--surface-color);
padding: 2rem;
border-radius: var(--radius-md);
box-shadow: var(--shadow-md);
margin-bottom: 3rem;
}
.mood-selector {
display: flex;
justify-content: center;
gap: 1rem;
margin-bottom: 1.5rem;
}
.mood-selector label {
cursor: pointer;
font-size: 2.5rem;
transition: transform 0.2s ease;
}
.mood-selector input {
display: none;
}
.mood-selector label:hover {
transform: scale(1.2);
}
.mood-selector input:checked + label {
transform: scale(1.3);
filter: saturate(1.5);
}
textarea {
width: 100%;
padding: 1rem;
border-radius: var(--radius-md);
border: 1px solid var(--border-color);
font-family: 'Inter', sans-serif;
font-size: 1rem;
resize: vertical;
min-height: 100px;
}
.btn-submit {
display: block;
width: 100%;
padding: 1rem;
margin-top: 1rem;
border: none;
border-radius: var(--radius-md);
background: linear-gradient(to right, var(--primary-gradient-start), var(--primary-color));
color: white;
font-size: 1.1rem;
font-weight: 500;
cursor: pointer;
transition: box-shadow 0.2s ease;
}
.btn-submit:hover {
box-shadow: var(--shadow-md);
}
.entries-list h2 {
text-align: center;
margin-bottom: 2rem;
}
.entry-card {
background-color: var(--surface-color);
border: 1px solid var(--border-color);
border-radius: var(--radius-md);
padding: 1.5rem;
margin-bottom: 1rem;
display: flex;
gap: 1.5rem;
align-items: flex-start;
}
.entry-card .mood {
font-size: 2rem;
}
.entry-card .content {
flex-grow: 1;
}
.entry-card .date {
font-size: 0.875rem;
color: var(--subtle-text-color);
margin-bottom: 0.5rem;
}
.entry-card .notes {
font-size: 1rem;
white-space: pre-wrap;
word-wrap: break-word;
}
/* Toast Notification */
.toast {
position: fixed;
top: 20px;
right: 20px;
background-color: var(--primary-color);
color: white;
padding: 1rem 1.5rem;
border-radius: var(--radius-md);
box-shadow: var(--shadow-md);
opacity: 0;
visibility: hidden;
transform: translateY(-20px);
transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
z-index: 1000;
}
.toast.show {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

29
assets/js/main.js Normal file
View File

@ -0,0 +1,29 @@
document.addEventListener('DOMContentLoaded', () => {
const urlParams = new URLSearchParams(window.location.search);
if (urlParams.has('saved') && urlParams.get('saved') === '1') {
showToast('Growth entry saved successfully!');
// Clean up the URL
history.replaceState(null, '', window.location.pathname);
}
});
function showToast(message) {
const toast = document.createElement('div');
toast.className = 'toast';
toast.textContent = message;
document.body.appendChild(toast);
// Animate in
setTimeout(() => {
toast.classList.add('show');
}, 100);
// Animate out and remove
setTimeout(() => {
toast.classList.remove('show');
setTimeout(() => {
document.body.removeChild(toast);
}, 300);
}, 3000);
}

248
index.php
View File

@ -1,150 +1,128 @@
<?php
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');
// --- INITIALIZATION ---
session_start();
ini_set('display_errors', '1');
error_reporting(E_ALL);
date_default_timezone_set('UTC');
require_once 'db/config.php';
// --- DATABASE SETUP ---
try {
$pdo = db();
$pdo->exec("CREATE TABLE IF NOT EXISTS growth_entries (
id INT PRIMARY KEY AUTO_INCREMENT,
entry_date DATE NOT NULL,
mood VARCHAR(255) NOT NULL,
notes TEXT,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
)");
} catch (PDOException $e) {
die("Database setup failed: " . $e->getMessage());
}
// --- FORM HANDLING ---
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
$mood = $_POST['mood'] ?? '';
$notes = $_POST['notes'] ?? '';
$entry_date = date('Y-m-d');
if (!empty($mood)) {
try {
$stmt = $pdo->prepare("INSERT INTO growth_entries (entry_date, mood, notes) VALUES (?, ?, ?)");
$stmt->execute([$entry_date, $mood, $notes]);
header('Location: index.php?saved=1');
exit;
} catch (PDOException $e) {
// In a real app, log this error instead of dying
die("Failed to save entry: " . $e->getMessage());
}
}
}
// --- DATA FETCHING ---
$entries = [];
try {
$stmt = $pdo->query("SELECT * FROM growth_entries ORDER BY created_at DESC");
$entries = $stmt->fetchAll();
} catch (PDOException $e) {
// In a real app, you might want to display a friendly error to the user
error_log("Failed to fetch entries: " . $e->getMessage());
}
// --- METADATA ---
$projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? 'Track your daily growth and progress.';
$projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? '';
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>New Style</title>
<?php
// Read project preview data from environment
$projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? '';
$projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? '';
?>
<?php if ($projectDescription): ?>
<title>Daily Growth Tracker</title>
<!-- Meta description -->
<meta name="description" content='<?= htmlspecialchars($projectDescription) ?>' />
<!-- Open Graph meta tags -->
<meta name="description" content="<?= htmlspecialchars($projectDescription) ?>" />
<!-- Open Graph & Twitter meta tags -->
<meta property="og:title" content="Daily Growth Tracker" />
<meta property="og:description" content="<?= htmlspecialchars($projectDescription) ?>" />
<!-- Twitter meta tags -->
<meta property="twitter:description" content="<?= htmlspecialchars($projectDescription) ?>" />
<?php endif; ?>
<?php if ($projectImageUrl): ?>
<!-- Open Graph image -->
<meta property="og:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
<!-- Twitter image -->
<meta property="twitter:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
<?php endif; ?>
<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=Inter:wght@400;700&display=swap" rel="stylesheet">
<style>
:root {
--bg-color-start: #6a11cb;
--bg-color-end: #2575fc;
--text-color: #ffffff;
--card-bg-color: rgba(255, 255, 255, 0.01);
--card-border-color: rgba(255, 255, 255, 0.1);
}
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>
<?php if ($projectImageUrl): ?>
<meta property="og:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
<meta property="twitter:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
<?php endif; ?>
<link rel="stylesheet" href="assets/css/style.css?v=<?= time() ?>">
</head>
<body>
<main>
<div class="card">
<h1>Analyzing your requirements and generating your website…</h1>
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes">
<span class="sr-only">Loading…</span>
</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>
<p>Runtime: PHP <code><?= htmlspecialchars($phpVersion) ?></code> — UTC <code><?= htmlspecialchars($now) ?></code></p>
</div>
</main>
<footer>
Page updated: <?= htmlspecialchars($now) ?> (UTC)
</footer>
<div class="container">
<header class="header">
<h1>Daily Growth Tracker</h1>
<p style="color: var(--subtle-text-color);">Your personal space to reflect and grow, one day at a time.</p>
</header>
<main>
<section class="entry-form">
<h2>How was your day?</h2>
<form action="index.php" method="POST">
<div class="mood-selector">
<?php
$moods = ['😞', '😐', '😊', '😄', '🚀'];
foreach ($moods as $m): ?>
<input type="radio" name="mood" value="<?= $m ?>" id="mood-<?= $m ?>" required>
<label for="mood-<?= $m ?>"><?= $m ?></label>
<?php endforeach; ?>
</div>
<textarea name="notes" placeholder="Add a few notes about your day..."></textarea>
<button type="submit" class="btn-submit">Save Growth</button>
</form>
</section>
<section class="entries-list">
<h2>Past Entries</h2>
<?php if (empty($entries)): ?>
<p style="text-align: center; color: var(--subtle-text-color);">No entries yet. Add one above to get started!</p>
<?php else: ?>
<?php foreach ($entries as $entry): ?>
<div class="entry-card">
<div class="mood"><?= htmlspecialchars($entry['mood']) ?></div>
<div class="content">
<div class="date"><?= date('l, F j, Y', strtotime($entry['entry_date'])) ?></div>
<p class="notes"><?= htmlspecialchars($entry['notes']) ?></p>
</div>
</div>
<?php endforeach; ?>
<?php endif; ?>
</section>
</main>
</div>
<div id="toast-container"></div>
<script src="assets/js/main.js?v=<?= time() ?>"></script>
</body>
</html>
</html>