-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact_js.html
73 lines (69 loc) · 2.29 KB
/
contact_js.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Contact | JS Validate</title>
<link href = "toolbar.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="contact.js"></script>
</head>
<body>
<!-- layout -->
<nav>
<ul class = "toolbar">
<li><a href="page_dacceuil.html">Page d'accueil</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="Agenda.html">Agenda</a></li>
<li><a href="Inscriptionconnexion.html">Inscription+Connexion</a></li>
</ul>
</nav>
<h1 ALIGN="CENTER">Contact</h1>
<p>
Informations génerales:
</p>
<form name="formulaire" onsubmit="return validate();" method="POST">
<div>
<label for="nom">Nom: </label>
<br>
<input type="text" id="nom" name="Nom" size="30" maxlength="40" >
<br><br>
</div>
<label for="prenom">Prenom:</label>
<br>
<input type="text" id="prenom" Name="Prenom" size="30" maxlength="40" >
<br><br>
Civilité:
<br>
<input type="radio" id="mr" name="boutonradio" value="mr"> <label for="mr">Mr</label> <br>
<input type="radio" id="mme" name="boutonradio" value="mme"><label for="mme">Mme</label> <br>
<input type="radio" id="mlle" name="boutonradio" value="mlle"><label for="mlle">Mlle</label> <br>
<input type="radio" id="autre" name="boutonradio" value="autre"><label for="autre">Autre </label><br>
<br><br>
<label for="email">E-mail:</label>
<input type="email" id="email" name="email" pattern="^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+.fr">
<br><br>
<label for="tel">Telephone:</label>
<input type="number" id="tel" name="usrtel"
placeholder="(+216) 55555555" pattern=".{10,14}">
<br><br>
<label for="datearr">Date d'arrivée :</label>
<input type="datetime-local"
id="datearr" name="datearr">
<label for="datesor">Date de sortie :</label>
<input type="datetime-local"
id="datesor" name="datesor">
<br><br>
<label for="message">Message:</label>
<br>
<textarea id="message" name="avis" rows="3" cols="25"></textarea>
<br><br>
<button type="submit" >Envoyer</button>
</form>
<!-- layout -->
<footer>
<p>
Dream Tek Consulting
Adresse : Carthago Immeuble Luxor 1, B3.1 3ème étage 1002, Monplaisir
</p>
</footer>
</body>
</html>