Téléverser les fichiers vers "/"

This commit is contained in:
Michel Tuboeuf 2024-12-01 19:20:28 +01:00
parent 1973ac98b7
commit 85f2aacad1
4 changed files with 45 additions and 21 deletions

View File

@ -22,8 +22,14 @@ $_SESSION['captcha_num2'] = rand(1, 10);
<h1>Qui vient... ou pas</h1>
<form method="POST" action="traitement.php">
<label for="title"><span style="color: #e03e2d;"><strong>*</strong></span> Indiquez qui vous êtes :</label><br>
<label for="title"><span style="color: #e03e2d;"><strong>*</strong></span> Veuillez vous présenter :</label><br>
<input type="text" id="title" name="title" required><br>
<label>
<input type="checkbox" id="notPresent" name="not_present">
Je ne serai pas présent
</label>
<h3>ou</h3>
<label for="nombre">Indiquez le nombre de personnes :</label>
<input type="number" id="nombre" name="nombre" min="1"><br><br>
@ -34,19 +40,14 @@ $_SESSION['captcha_num2'] = rand(1, 10);
<label for="covoiturage">Rendez-vous pour du covoiturage</label><br>
<input type="radio" id="rdv" name="transport_option" value="Rendez-vous départ">
<label for="rdv">Rendez-vous au point de départ</label><br>
<label for="rdv">Rendez-vous au point de départ</label><br><br>
</div>
<label>
<input type="checkbox" id="notPresent" name="not_present">
Je ne serai pas présent
</label><br>
<label for="description">Si vous avez quelque chose à ajouter :</label><br>
<label for="description">Vous pouvez ajouter un commentaire :</label><br>
<textarea id="description" name="description"></textarea><br>
<!-- CAPTCHA -->
<label for="captcha"><span style="color: #e03e2d;"><strong>*</strong></span> Résolvez cette opération :</label><br>
<span><?php echo $_SESSION['captcha_num1']; ?> + <?php echo $_SESSION['captcha_num2']; ?> = </span>
<label for="captcha"><span style="color: #e03e2d;"><strong>*</strong></span><strong> Résolvez cette opération :</strong></label><br>
<span style="font-size: 20px; color:#0039a6;"><?php echo $_SESSION['captcha_num1']; ?> + <?php echo $_SESSION['captcha_num2']; ?> = </span>
<input type="number" id="captcha" name="captcha" required><br>
<?php if (isset($_GET['captcha_error'])): ?>
<div style="color: red;">Erreur : La réponse est incorrecte.</div>
@ -83,6 +84,8 @@ $_SESSION['captcha_num2'] = rand(1, 10);
}
});
</script>
<a href="javascript:history.go(-1)"><img src="./images/retour.png" width="100" height="60" border="0" title="Retour page précédente" alt="Retour page précedente"></a>
</body>
</html>

View File

@ -9,14 +9,7 @@ include 'annonces.php';
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Liste des participants</title>
<link rel="stylesheet" href="../quest-rando/style.css">
<style>
/* Assure que le bouton est bien aligné à droite */
.btn-retour {
float: right;
margin: 10px;
display: inline-block;
}
</style>
</head>
<body>
@ -24,7 +17,7 @@ include 'annonces.php';
<div class="main-container">
<!-- Bouton Retour -->
<div class="btn-retour">
<a href="https://www.lemimi.fr/fr/test-prochaine-rando-bis">
<a href="https://www.lemimi.fr/fr/prochaine-rando">
<img src="./images/bouton_retour.gif" width="180" height="60" border="0" title="Clic" alt="Retour page rando">
</a>
</div>

View File

@ -11,14 +11,15 @@
float: right;
margin: 10px; /* Aligne le contenu à droite */
margin-bottom: 20px;
display: inline-block;
}
.btn-retour a img {
display: inline-block; /* Assure que l'image reste au format bouton */
}
body {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 11pt;
font-family: "Times New Roman", Georgia, Times, serif;
font-size: 12pt;
background-color: #f4f4f4;
color: #333;
background-image: url(../quest-rando/images/ciel-overlay2.jpg);

27
traitement.php Normal file
View File

@ -0,0 +1,27 @@
<?php
include 'annonces.php';
session_start();
if ($_SERVER['REQUEST_METHOD'] === 'POST' && !empty($_POST['title'])) {
$nombre = isset($_POST['not_present']) ? 0 : ($_POST['nombre'] ?? 0);
$nombre = isset($_POST['nombre']) ? intval($_POST['nombre']) : null;
$description = $_POST['description'] ?? '';
$transportOption = $nombre > 0 ? ($_POST['transport_option'] ?? '') : '';
if ($nombre > 0 && empty($transportOption)) {
echo "<p style='color:red;'>Veuillez sélectionner une option de transport.</p>";
} else {
addAnnonce($_POST['title'], $nombre, $description, $transportOption);
// Vérifiez si le CAPTCHA est correct
if (!isset($_POST['captcha']) || $_POST['captcha'] != ($_SESSION['captcha_num1'] + $_SESSION['captcha_num2'])) {
// Redirigez vers le formulaire avec une erreur
header('Location: formulaire.php?captcha_error=1');
exit();
}
// Rediriger vers la page de la liste des participants
header("Location: liste.php");
exit;
}
}