BasesWeb/FRONTEND/formulaire.html.html

123 lines
4.2 KiB
HTML
Raw Normal View History

2022-11-24 16:05:33 +01:00
<!DOCTYPE html>
<html>
<head>
<title>Contact</title>
<meta charset="utf-8"/>
<link href="images/logo.png" rel="icon" type="image/x-icon">
<link href="css/style.css.css" rel="stylesheet" media="all" type="text/css">
<link href="css/formulaire.css.css" rel="stylesheet" media="all" typr="text/css">
</head>
<body class="bodyform">
<header>
<span class="banière"><img src="images/medicale-banniere.jpg" width="99%" height="90px"/></span>
</header>
<br>
<br>
<nav>
<table class="nav">
<tr>
<td>
<form action="index.html.html" method="get" enctype="text/plain">
<button class="bouton" type="submit">Accueil</button>
</form>
</td>
<td>
<form action="horaires.html.html" method="get" enctype="text/plain">
<button class="bouton" type="submit">Horaires</button>
</form>
</td>
<td>
<form action="specialites.html.html" method="get" enctype="text/plain">
<button class="bouton" type="submit">Spécialités</button>
</form>
</td>
<td>
<form action="priserdv.html.html" method="get" enctype="text/plain">
<button class="bouton" type="submit">Rendez-vous</button>
</form>
</td>
<td>
<form action="formulaire.html.html" method="get" enctype="text/plain">
<button class="bouton" type="submit">Contact</button>
</form>
</td>
</tr>
</table>
</nav>
<br>
<form action="https://prendre-mon-rdv.com" method="get" enctype="text/plain" class="formule">
<fieldset class="coordonnées">
<table class="coordonnées2">
<tr>
<td><label for="nom">Nom:</label></td>
<td class="casedroite"><input id="nom" type="text" name="nom" placeholder="votre nom" class="input1" required/></td>
</tr>
<tr>
<td><label for="nom">Prénom:</label></td>
<td class="casedroite"><input id="nom" type="text" name="prénom" placeholder="votre prénom" class="input1" required/></td>
</tr>
<tr>
<td><label for="nom">Date de naissance:</label></td>
<td id="date"><input id="date" type="Date" name="date" class="input3" required/></td>
</tr>
<tr>
<td><label for="nom">Mail:</label></td>
<td class="casedroite"><input id="mail" type="email" name="mail" placeholder="votre mail" class="input4" required/></td>
</tr>
<tr>
<td><label for="nom">Votre site:</label></td>
<td class="casedroite"><input id="site" type="url" name="site" value="http://www." class="input2"/></td>
</tr>
<tr>
<td><label for="nom">Genre:</label>
<td class="casedroite"><input type="radio" name="xx" value="xy"/>Homme
<input type="radio" name="xx" value="xx"/>Femme
</tr>
<tr>
<td>
<label for="nom">Pays:</label>
<td class="casedroite">
Votre pays:
<select name="select">
<optgroup label="Europe">
<option value="France">France</option>
<option value="Belgique">Belgique</option>
</optgroup>
<optgroup label="Asie">
<option value="Chine">Chine</option>
<option value="Russie">Russie</option>
</optgroup>
<optgroup label="Amériques">
<option value="Etats-Unis">Etats-Unis</option>
<option value="Brésil">Brésil</option>
</optgroup>
</td>
</select>
</td>
</tr>
</table>
</fieldset>
<fieldset>
<b>Schéma vaccinal</b>
<br>
<input name="xx[]" type="checkbox" value="v1" />Covid - Schéma complet<br>
<input name="xx[]" type="checkbox" value="v2" />Autres vaccins<br>
<br>
<textarea maxlength="500" rows="5" cols="52">
Vos antécédents médicaux
</textarea>
</fieldset>
<fieldset>
<input type="file" name="photo"/><br><br>
<input type="submit" value="Envoyer"/>
<input type="reset" value="Effacer"/>
</fieldset>
</form>
<br>
<br>
<footer>
En cas d'abscence, vous pouvez <a href="https://www.doctolib.fr">consulter ce site</a><br>
Je suis par ailleurs membre de démonstration des MMT.
</footer>
</body>
</html>