62 lines
2.7 KiB
PHP
62 lines
2.7 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<link rel="stylesheet" type="text/css" href="styles/<?php echo((isset($_GET["theme"]) && $_GET["theme"]=="vieux") ? '2000' : 'today')?>/main.css"/>
|
|
<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=Zen+Kurenaido&display=swap" rel="stylesheet">
|
|
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon">
|
|
<script src="nav.js" defer></script>
|
|
<title>Recherche <?php
|
|
if(isset($_GET["gender"])){
|
|
if($_GET["gender"]=="man")echo "d'un homme";
|
|
else if($_GET["gender"]=="woman")echo "d'une femme";
|
|
else header('Location: index.php');
|
|
}else header('Location: index.php');
|
|
?> | Don't meet me</title>
|
|
</head>
|
|
<body>
|
|
<?php include("header.php") ?>
|
|
<main>
|
|
<section id="intro">
|
|
<h2>
|
|
<?php
|
|
// choix du genre de la personne que l'on cherche (femme par defaut )
|
|
if($_GET["gender"]=="man"){
|
|
echo 'Tu cherches un homme beau, fort, musclé qui se verse du coca quand il travaille ?';
|
|
}else {
|
|
echo 'Tu cherches une femme, forte, musclée qui se verse du coca quand elle travaille ?';
|
|
}
|
|
?>
|
|
</h2>
|
|
<p>Tu es au bon endroit !</p>
|
|
</section>
|
|
<section id="form">
|
|
<form action="" id="form" method="post" enctype="text/plain">
|
|
<!-- peux tu lecher ton coude -->
|
|
<!------------------------------>
|
|
<label for="lechercoude">Sais-tu te lécher le coude ?</label>
|
|
<select name="lechercoude" id="lechercoude">
|
|
<option value="Oui">Oui</option>
|
|
<option value="Non">Non</option>
|
|
</select>
|
|
<label for="100m">Combien de temps fais-tu au 100m nage libre ? (minutes)</label>
|
|
<input type="number" name="100m" id="100m">
|
|
<!-- 100 metres nage libre -->
|
|
<!------------------------------>
|
|
<!-- solde de la carte banquaire -->
|
|
<!------------------------------>
|
|
<!-- -->
|
|
<!------------------------------>
|
|
<!-- systeme s'exploitation -->
|
|
<!------------------------------>
|
|
<!-- les feux de l'amour ou helene et les garcons -->
|
|
<!------------------------------>
|
|
</form>
|
|
</section>
|
|
</main>
|
|
<?php include("footer.php") ?>
|
|
</body>
|
|
</html>
|