-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
72 lines (58 loc) · 1.76 KB
/
contact.php
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
<?php session_start(); ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" href="css/style.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="scripts/jquery.qtip.min.js"></script>
<link rel="stylesheet" href="scripts/jquery.qtip.min.css" />
<script>
$(document).ready(function()
{
$('[title!=""]').qtip(
{
position: {
my:'center left',
at:'center right',
},
style : {
classes: 'qtip-bootstrap'
}
});
});
</script>
<title> ULike </title>
</head>
<body>
<?php include("include/entete.php"); ?>
<div id="bodycentered" >
<form action="controleurs/post_contact.php" method="post" enctype="multipart/form-data">
<fieldset>
<legend> Nous contacter : </legend>
<div id="fieldcontact">
<div id="fieldnom">
<p>
<label class="sujet" for="sujet"> Nom : </label>
</p>
<input type="text" title="Votre nom ne sera jamais communiqué" class="sujet" name="sujet" />
</div>
<div id="fieldmail">
<p>
<label for="mail"> Adresse Mail : </label>
</p>
<input type="email" id="mail" name="mail" title="Nous ne demandons votre adresse que dans l'intention de vous recontacter" placeholder ="jean.dupont@votremail.com" />
</div>
</div>
<p>
<label for="contenu"> Sujet : </label>
</p>
<textarea name="texte" id="contenu" placeholder ="Une question ? Un avis ? Ecrivez ici vos remarques !" ></textarea>
<p>
<input type="submit" value="Envoyer"/>
</p>
</form>
</div>
<?php include("include/footer.php");?>
</body>
</html>