generated from Templates_CodeFirst/templateHtmlCss
ajout final 2
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
ed1f86ba16
commit
19a6e8d94e
@ -1,49 +1,52 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="fr">
|
<html lang="fr">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<link type="text/css" rel="stylesheet" href="style.css">
|
<title>Contactez-moi</title>
|
||||||
<title>Corentin</title>
|
<link type="text/css" rel="stylesheet" href="style.css">
|
||||||
<nav class="navbar">
|
</head>
|
||||||
<ul class="navbar-list">
|
|
||||||
<li><a href="index.html">Accueil</a></li>
|
|
||||||
<li><a href="cursus.html">Cursus</a></li>
|
|
||||||
<li><a href="planning.html">Planning</a></li>
|
|
||||||
<li class="dropdown">
|
|
||||||
<a href="#">Gallerie</a>
|
|
||||||
<ul class="dropdown-content">
|
|
||||||
<li><a href="images.html">Images</a></li>
|
|
||||||
<li><a href="videos.html">Vidéos</a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li><a href="form.php">Form</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
</head>
|
|
||||||
<body>
|
<body>
|
||||||
<form action="process.php" method="POST">
|
<h1>Formulaire de Contact</h1>
|
||||||
<!--Required input for the last name -->
|
<form action="process.php" method="GET">
|
||||||
<label for="last_name">Last Name:</label>
|
<!-- Champ pour le nom (obligatoire) -->
|
||||||
<input type="text" id="last_name" name="last_name" required><br><br>
|
<label for="name">Nom:</label>
|
||||||
|
<input type="text" id="name" name="name" required><br><br>
|
||||||
|
|
||||||
<!-- Required input for the first name -->
|
<!-- Champ pour l'adresse email (obligatoire) -->
|
||||||
<label for="first_name">First Name:</label>
|
<label for="email">Adresse de courriel:</label>
|
||||||
<input type="text" id="first_name" name="first_name" required><br><br>
|
<input type="email" id="email" name="email" required><br><br>
|
||||||
|
|
||||||
<!--Input of type numer for the age -->
|
|
||||||
<label for="age">Age:</label>
|
|
||||||
<input type="number" id="age" name="age" min="0" step="1"><br><br>
|
|
||||||
|
|
||||||
<!--List for the gender -->
|
<!-- Champ pour le numéro de téléphone (facultatif) -->
|
||||||
<label for="gender">Gender:</label>
|
<label for="phone">Numéro de téléphone:</label>
|
||||||
<select id="gender" name="gender">
|
<input type="tel" id="phone" name="phone"><br><br>
|
||||||
<option value="male">Male</option>
|
|
||||||
<option value="female">Female</option>
|
<!-- Liste déroulante pour le motif de contact -->
|
||||||
<option value="other">Other</option>
|
<label for="reason">Motif de contact:</label>
|
||||||
|
<select id="reason" name="reason">
|
||||||
|
<option value="information">Demande d'information</option>
|
||||||
|
<option value="support">Support technique</option>
|
||||||
|
<option value="feedback">Feedback</option>
|
||||||
|
<option value="other">Autre</option>
|
||||||
</select><br><br>
|
</select><br><br>
|
||||||
|
|
||||||
<!--Submit button -->
|
<!-- Champ pour le créneau horaire (jour + horaire) -->
|
||||||
<input type="submit" value="Submit">
|
<label for="schedule">Créneau horaire:</label>
|
||||||
|
<input type="datetime-local" id="schedule" name="schedule"><br><br>
|
||||||
|
|
||||||
|
<!-- Boutons radio pour indiquer si c'est la première demande -->
|
||||||
|
<label>Première demande ?</label><br>
|
||||||
|
<input type="radio" id="first_request_yes" name="first_request" value="yes">
|
||||||
|
<label for="first_request_yes">Oui</label>
|
||||||
|
<input type="radio" id="first_request_no" name="first_request" value="no">
|
||||||
|
<label for="first_request_no">Non</label><br><br>
|
||||||
|
|
||||||
|
<!-- Champ texte pour le message (obligatoire) -->
|
||||||
|
<label for="message">Message:</label>
|
||||||
|
<textarea id="message" name="message" required></textarea><br><br>
|
||||||
|
|
||||||
|
<!-- Boutons de soumission et de remise à zéro -->
|
||||||
|
<input type="submit" value="Envoyer">
|
||||||
|
<input type="reset" value="Réinitialiser">
|
||||||
</form>
|
</form>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
Reference in new issue