Compare commits

..

1 Commits

Author SHA1 Message Date
Flatlogic Bot
34c9bbd153 Medipet 2025-11-04 15:04:01 +00:00
4 changed files with 220 additions and 145 deletions

68
add-medication.php Normal file
View File

@ -0,0 +1,68 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Add Medication - Medipet</title>
<meta name="description" content="Add a new medication to your schedule.">
<meta property="og:title" content="Add Medication - Medipet">
<meta property="og:description" content="Add a new medication to your schedule.">
<meta property="og:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? '', ENT_QUOTES, 'UTF-8'); ?>">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? '', ENT_QUOTES, 'UTF-8'); ?>">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<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=Poppins:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-white shadow-sm">
<div class="container">
<a class="navbar-brand" href="index.php">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="#20c997" class="d-inline-block align-text-top me-2" viewBox="0 0 16 16">
<path d="M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M2 3v1h12V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1m12 2H2v9a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1z"/>
<path d="M8 7a.5.5 0 0 1 .5.5V9H10a.5.5 0 0 1 0 1H8.5v1.5a.5.5 0 0 1-1 0V10H6a.5.5 0 0 1 0-1h1.5V7.5A.5.5 0 0 1 8 7"/>
</svg>
Medipet
</a>
</div>
</nav>
<main class="container py-5">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="card">
<div class="card-body">
<h2 class="card-title text-center mb-4">Add a New Medication</h2>
<form action="index.php" method="POST">
<div class="mb-3">
<label for="medicationName" class="form-label">Medication Name</label>
<input type="text" class="form-control" id="medicationName" name="medicationName" placeholder="e.g., Vitamin D" required>
</div>
<div class="mb-3">
<label for="dosage" class="form-label">Dosage</label>
<input type="text" class="form-control" id="dosage" name="dosage" placeholder="e.g., 1 tablet" required>
</div>
<div class="mb-3">
<label for="schedule" class="form-label">Schedule</label>
<textarea class="form-control" id="schedule" name="schedule" rows="3" placeholder="e.g., Every morning at 8:00 AM" required></textarea>
</div>
<div class="d-grid">
<button type="submit" class="btn btn-primary">Save Medication</button>
</div>
</form>
</div>
</div>
</div>
</div>
</main>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>

56
assets/css/custom.css Normal file
View File

@ -0,0 +1,56 @@
body {
font-family: 'Poppins', sans-serif;
background-color: #f8f9fa;
color: #343a40;
}
.navbar-brand {
font-weight: 600;
}
.card {
border: none;
border-radius: 0.75rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.2s ease-in-out;
}
.card:hover {
transform: translateY(-5px);
}
.card-title {
font-weight: 600;
color: #20c997;
}
.pet-container {
text-align: center;
}
.pet-container svg {
width: 100%;
max-width: 200px;
height: auto;
}
.streak-container h1 {
font-size: 3.5rem;
font-weight: 700;
color: #fd7e14;
}
.btn-primary {
background-color: #20c997;
border-color: #20c997;
border-radius: 0.5rem;
padding: 0.75rem 1.5rem;
font-weight: 600;
transition: background-color 0.2s;
}
.btn-primary:hover {
background-color: #1a9a78;
border-color: #1a9a78;
}

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

@ -0,0 +1 @@
// This file is ready for future JavaScript functionality.

238
index.php
View File

@ -1,150 +1,100 @@
<?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');
?>
<!doctype html>
<!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): ?>
<!-- Meta description -->
<meta name="description" content='<?= htmlspecialchars($projectDescription) ?>' />
<!-- Open Graph meta tags -->
<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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Medipet</title>
<meta name="description" content="A gamified medication reminder app to make tracking meds fun and easy.">
<meta name="keywords" content="medication reminder, gamification, health tracker, virtual pet, pill reminder, adherence, medicine schedule, kids medication, elder care, Built with Flatlogic Generator">
<meta property="og:title" content="Medipet">
<meta property="og:description" content="A gamified medication reminder app to make tracking meds fun and easy.">
<meta property="og:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? '', ENT_QUOTES, 'UTF-8'); ?>">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? '', ENT_QUOTES, 'UTF-8'); ?>">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<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=Poppins:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo 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>
<nav class="navbar navbar-expand-lg navbar-light bg-white shadow-sm">
<div class="container">
<a class="navbar-brand" href="#">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="#20c997" class="d-inline-block align-text-top me-2" viewBox="0 0 16 16">
<path d="M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M2 3v1h12V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1m12 2H2v9a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1z"/>
<path d="M8 7a.5.5 0 0 1 .5.5V9H10a.5.5 0 0 1 0 1H8.5v1.5a.5.5 0 0 1-1 0V10H6a.5.5 0 0 1 0-1h1.5V7.5A.5.5 0 0 1 8 7"/>
</svg>
Medipet
</a>
</div>
</nav>
<main class="container py-5">
<div class="row g-4">
<!-- Virtual Pet -->
<div class="col-lg-5 col-md-6">
<div class="card h-100">
<div class="card-body d-flex flex-column justify-content-center align-items-center">
<h5 class="card-title text-center mb-3">Your Pet: Buddy</h5>
<div class="pet-container">
<!-- Simple SVG Dog -->
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<g fill="#fd7e14">
<circle cx="50" cy="70" r="25"/>
<circle cx="35" cy="45" r="15"/>
<circle cx="65" cy="45" r="15"/>
<path d="M 20 55 C 15 65, 15 75, 25 80" fill="none" stroke="#fd7e14" stroke-width="5"/>
</g>
<g fill="#343a40">
<circle cx="42" cy="70" r="3"/>
<circle cx="58" cy="70" r="3"/>
<path d="M 45 80 Q 50 85, 55 80" fill="none" stroke="#343a40" stroke-width="2"/>
</g>
</svg>
</div>
<p class="text-muted text-center mt-3">Buddy is healthy and happy!</p>
</div>
</div>
</div>
<!-- Streak & Meds -->
<div class="col-lg-7 col-md-6">
<div class="row g-4">
<!-- My Streak -->
<div class="col-12">
<div class="card">
<div class="card-body text-center">
<h5 class="card-title">Current Streak</h5>
<div class="streak-container">
<h1>0 <span class="fs-4 text-muted">days</span></h1>
</div>
</div>
</div>
</div>
<!-- My Medications -->
<div class="col-12">
<div class="card">
<div class="card-body text-center">
<h5 class="card-title">My Medications</h5>
<p class="text-muted">You haven't added any medications yet.</p>
<a href="add-medication.php" class="btn btn-primary">Add First Medication</a>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>