V1
This commit is contained in:
parent
efbcb5ffee
commit
828c46522d
74
assets/css/custom.css
Normal file
74
assets/css/custom.css
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
|
||||||
|
body {
|
||||||
|
background-color: #F8F9FA;
|
||||||
|
color: #0B2340;
|
||||||
|
font-family: 'Helvetica Neue', Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5 {
|
||||||
|
font-family: Georgia, serif;
|
||||||
|
color: #0B2340;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-brand {
|
||||||
|
font-family: Georgia, serif;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quiz-card {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border: 1px solid #dee2e6;
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
|
||||||
|
}
|
||||||
|
|
||||||
|
.progress-bar {
|
||||||
|
background-color: #0B2340;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-answer {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border: 2px solid #D9C9B6;
|
||||||
|
color: #0B2340;
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
transition: all 0.2s ease-in-out;
|
||||||
|
width: 100%;
|
||||||
|
text-align: left;
|
||||||
|
padding: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-answer:hover, .btn-answer:focus {
|
||||||
|
background-color: #D9C9B6;
|
||||||
|
color: #0B2340;
|
||||||
|
border-color: #0B2340;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-answer.correct {
|
||||||
|
background-color: #d4edda;
|
||||||
|
border-color: #28a745;
|
||||||
|
color: #155724;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-answer.incorrect {
|
||||||
|
background-color: #f8d7da;
|
||||||
|
border-color: #dc3545;
|
||||||
|
color: #721c24;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-primary {
|
||||||
|
background-color: #0B2340;
|
||||||
|
border-color: #0B2340;
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-primary:hover {
|
||||||
|
background-color: #1c3a5e;
|
||||||
|
border-color: #1c3a5e;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toast-container {
|
||||||
|
position: fixed;
|
||||||
|
top: 1rem;
|
||||||
|
right: 1rem;
|
||||||
|
z-index: 1055;
|
||||||
|
}
|
||||||
45
assets/js/main.js
Normal file
45
assets/js/main.js
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
|
||||||
|
document.addEventListener('DOMContentLoaded', () => {
|
||||||
|
const correct_answer_index = 2; // The 3rd answer is correct
|
||||||
|
const answerButtons = document.querySelectorAll('.btn-answer');
|
||||||
|
const nextButton = document.getElementById('next-question-btn');
|
||||||
|
const toastContainer = document.getElementById('toast-container');
|
||||||
|
|
||||||
|
answerButtons.forEach((button, index) => {
|
||||||
|
button.addEventListener('click', () => {
|
||||||
|
// Disable all buttons
|
||||||
|
answerButtons.forEach(btn => btn.disabled = true);
|
||||||
|
|
||||||
|
let is_correct = (index === correct_answer_index);
|
||||||
|
|
||||||
|
if (is_correct) {
|
||||||
|
button.classList.add('correct');
|
||||||
|
showToast('Bonne réponse !', 'success');
|
||||||
|
} else {
|
||||||
|
button.classList.add('incorrect');
|
||||||
|
answerButtons[correct_answer_index].classList.add('correct');
|
||||||
|
showToast('Réponse incorrecte.', 'danger');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Show the next question button
|
||||||
|
nextButton.classList.remove('d-none');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
function showToast(message, type) {
|
||||||
|
const toastHTML = `
|
||||||
|
<div class="toast align-items-center text-white bg-${type} border-0" role="alert" aria-live="assertive" aria-atomic="true">
|
||||||
|
<div class="d-flex">
|
||||||
|
<div class="toast-body">
|
||||||
|
${message}
|
||||||
|
</div>
|
||||||
|
<button type="button" class="btn-close btn-close-white me-2 m-auto" data-bs-dismiss="toast" aria-label="Close"></button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
toastContainer.innerHTML = toastHTML;
|
||||||
|
const toastEl = toastContainer.querySelector('.toast');
|
||||||
|
const toast = new bootstrap.Toast(toastEl, { delay: 3000 });
|
||||||
|
toast.show();
|
||||||
|
}
|
||||||
|
});
|
||||||
225
index.php
225
index.php
@ -1,150 +1,85 @@
|
|||||||
<?php
|
<!DOCTYPE html>
|
||||||
declare(strict_types=1);
|
<html lang="fr">
|
||||||
@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" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>New Style</title>
|
|
||||||
<?php
|
<!-- SEO & Meta Tags -->
|
||||||
// Read project preview data from environment
|
<title>BreakTaboo - Quiz sur la Santé Sexuelle</title>
|
||||||
$projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? '';
|
<meta name="description" content="Un quiz gamifié pour sensibiliser les jeunes Marocains à la santé sexuelle. Construit avec Flatlogic Generator.">
|
||||||
$projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? '';
|
<meta name="keywords" content="santé sexuelle, éducation, quiz, gamification, Maroc, jeunes, adolescents, prévention, santé, bien-être, apprentissage ludique, Built with Flatlogic Generator">
|
||||||
?>
|
|
||||||
<?php if ($projectDescription): ?>
|
<!-- Open Graph / Facebook -->
|
||||||
<!-- Meta description -->
|
<meta property="og:type" content="website">
|
||||||
<meta name="description" content='<?= htmlspecialchars($projectDescription) ?>' />
|
<meta property="og:title" content="BreakTaboo - Quiz sur la Santé Sexuelle">
|
||||||
<!-- Open Graph meta tags -->
|
<meta property="og:description" content="Un quiz gamifié pour sensibiliser les jeunes Marocains à la santé sexuelle.">
|
||||||
<meta property="og:description" content="<?= htmlspecialchars($projectDescription) ?>" />
|
<meta property="og:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? 'https://via.placeholder.com/1200x630/0B2340/D9C9B6?text=BreakTaboo'); ?>">
|
||||||
<!-- Twitter meta tags -->
|
|
||||||
<meta property="twitter:description" content="<?= htmlspecialchars($projectDescription) ?>" />
|
<!-- Twitter -->
|
||||||
<?php endif; ?>
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
<?php if ($projectImageUrl): ?>
|
<meta name="twitter:title" content="BreakTaboo - Quiz sur la Santé Sexuelle">
|
||||||
<!-- Open Graph image -->
|
<meta name="twitter:description" content="Un quiz gamifié pour sensibiliser les jeunes Marocains à la santé sexuelle.">
|
||||||
<meta property="og:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
|
<meta name="twitter:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? 'https://via.placeholder.com/1200x630/0B2340/D9C9B6?text=BreakTaboo'); ?>">
|
||||||
<!-- Twitter image -->
|
|
||||||
<meta property="twitter:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
|
<!-- Stylesheets -->
|
||||||
<?php endif; ?>
|
<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="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
||||||
<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>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<main>
|
|
||||||
<div class="card">
|
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
||||||
<h1>Analyzing your requirements and generating your website…</h1>
|
<div class="container">
|
||||||
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes">
|
<a class="navbar-brand" href="#">BreakTaboo</a>
|
||||||
<span class="sr-only">Loading…</span>
|
</div>
|
||||||
</div>
|
</nav>
|
||||||
<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>
|
<main class="container mt-5">
|
||||||
<p>Runtime: PHP <code><?= htmlspecialchars($phpVersion) ?></code> — UTC <code><?= htmlspecialchars($now) ?></code></p>
|
<div class="row justify-content-center">
|
||||||
</div>
|
<div class="col-lg-8 col-md-10">
|
||||||
</main>
|
|
||||||
<footer>
|
<div class="quiz-card p-4 p-md-5">
|
||||||
Page updated: <?= htmlspecialchars($now) ?> (UTC)
|
<!-- Progress -->
|
||||||
</footer>
|
<div class="mb-4">
|
||||||
|
<p class="mb-2">Progression : Niveau 1</p>
|
||||||
|
<div class="progress" style="height: 10px;">
|
||||||
|
<div class="progress-bar" role="progressbar" style="width: 10%;" aria-valuenow="10" aria-valuemin="0" aria-valuemax="100"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Question -->
|
||||||
|
<div class="question-section mb-4">
|
||||||
|
<h2 class="mb-3 fs-4">Question 1/10</h2>
|
||||||
|
<p class="lead">Quelle est la méthode de contraception la plus efficace pour se protéger à la fois d'une grossesse non désirée et des infections sexuellement transmissibles (IST) ?</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Answers -->
|
||||||
|
<div class="answers-section vstack gap-3">
|
||||||
|
<button class="btn btn-answer">La pilule contraceptive</button>
|
||||||
|
<button class="btn btn-answer">Le stérilet (DIU)</button>
|
||||||
|
<button class="btn btn-answer">Le préservatif</button>
|
||||||
|
<button class="btn btn-answer">La méthode du retrait</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Next Button -->
|
||||||
|
<div class="text-end mt-4">
|
||||||
|
<button class="btn btn-primary d-none" id="next-question-btn">Question Suivante <i class="bi bi-arrow-right"></i></button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<!-- Toast Container -->
|
||||||
|
<div id="toast-container" class="toast-container"></div>
|
||||||
|
|
||||||
|
<footer class="text-center text-muted py-4 mt-5">
|
||||||
|
<p>© <?php echo date("Y"); ?> BreakTaboo. Tous droits réservés.</p>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<!-- Scripts -->
|
||||||
|
<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>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
Loading…
x
Reference in New Issue
Block a user