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>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link type="text/css" rel="stylesheet" href="style.css">
|
||||
<title>Corentin</title>
|
||||
<nav class="navbar">
|
||||
<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>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Contactez-moi</title>
|
||||
<link type="text/css" rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<form action="process.php" method="POST">
|
||||
<!--Required input for the last name -->
|
||||
<label for="last_name">Last Name:</label>
|
||||
<input type="text" id="last_name" name="last_name" required><br><br>
|
||||
<h1>Formulaire de Contact</h1>
|
||||
<form action="process.php" method="GET">
|
||||
<!-- Champ pour le nom (obligatoire) -->
|
||||
<label for="name">Nom:</label>
|
||||
<input type="text" id="name" name="name" required><br><br>
|
||||
|
||||
<!-- Required input for the first name -->
|
||||
<label for="first_name">First Name:</label>
|
||||
<input type="text" id="first_name" name="first_name" 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>
|
||||
<!-- Champ pour l'adresse email (obligatoire) -->
|
||||
<label for="email">Adresse de courriel:</label>
|
||||
<input type="email" id="email" name="email" required><br><br>
|
||||
|
||||
<!--List for the gender -->
|
||||
<label for="gender">Gender:</label>
|
||||
<select id="gender" name="gender">
|
||||
<option value="male">Male</option>
|
||||
<option value="female">Female</option>
|
||||
<option value="other">Other</option>
|
||||
<!-- Champ pour le numéro de téléphone (facultatif) -->
|
||||
<label for="phone">Numéro de téléphone:</label>
|
||||
<input type="tel" id="phone" name="phone"><br><br>
|
||||
|
||||
<!-- Liste déroulante pour le motif de contact -->
|
||||
<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>
|
||||
|
||||
<!--Submit button -->
|
||||
<input type="submit" value="Submit">
|
||||
<!-- Champ pour le créneau horaire (jour + horaire) -->
|
||||
<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>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Reference in new issue