-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccount.html
147 lines (133 loc) · 6.52 KB
/
account.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html>
<head>
<title>Index</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <link href="bootstrap/dist/css/bootstrap.css" rel="stylesheet"> -->
<link rel="stylesheet" href="bootstrap_4/css/bootstrap.min.css">
<link rel="stylesheet" href="bootstrap_4/js/bootstrap.js">
<link rel="stylesheet" href="bootstrap_4/js/bootstrap.min.js">
<!-- <link href="style.css" rel="stylesheet"> -->
<link href="myStyle.css" rel="stylesheet">
</head>
<body>
<!-- navbar-expand-md navbar-dark bg-dark sticky-top-->
<div class="header"></div>
<!-- navbar-expand-md navbar-dark bg-dark sticky-top-->
<nav class="navbar fixed-top navbar-expand-md navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand p-2" href="home.html">RedGis-Africa</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navi" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navi">
<ul class="col navbar-nav d-flex justify-content-end ">
<li class="nav-item p-2 menu-ind"><a class="nav-link text-white" href="index.html">Accueil</a></li>
<li class="nav-item p-2 menu-ind"><a class="nav-link text-white" href="geoportail.html">Geoportail</a></li>
<li class="nav-item p-2 menu-off"><a class="nav-link text-white" href="formations.html">Nos-Formations</a></li>
<li class="nav-item p-2 menu-sig"><a class="nav-link text-white" href="blog.html">Blog</a></li>
<li class="nav-item p-2 menu-sig"><a class="nav-link text-white" href="compte.html">Compte</a></li>
<li class="nav-item p-2 menu-con"><a class="nav-link text-white" href="account.html">Contact</a></li>
</ul>
</div>
</div>
</nav>
<br><br><br><br><br><br>
<section >
<div class="container container-home-form">
<div class="row">
<div class="col-sm-12">
<h2>Veuillez-nous laisser un message !</h2>
<fieldset>
<form class="form" action="traitement.php" method="get">
<div class="form-group">
<label for="email">Nom: </label>
<input type="email" id="email" class="form-control" required="required">
</div>
<div class="form-group">
<label for="tel">Phone: </label>
<input type="text" id="tel" class="form-control" required="required">
</div>
<div class="form-group">
<label for="mail">Email: </label>
<input type="email" id="mail" class="form-control" required="required">
</div>
<div class="form-group">
<textarea name="message" id="message"></textarea>
</div>
<button id="submit" class="btn btn-primary">Envoyer</button>
</form>
</fieldset>
</div>
</div>
</div>
</section>
<br> <br><br> <br>
<footer class="testmonials" id="testimonial">
<div class="container"><br> <br>
<div class="row">
<div class="col-sm-12">
<div id="carousel-testimonials" class="carousel slide" data-ride="carousel"><br>
<ul class="carousel-indicators">
<li data-target="#carousel-testimonials" data-slide-to="0" class="active"></li>
<li data-target="#carousel-testimonials" data-slide-to="1"></li>
<li data-target="#carousel-testimonials" data-slide-to="2"></li>
</ul>
<div class="carousel-inner">
<div class="carousel-item active text-center">
<img src="images/1.png" alt="Image 1" class="center-block">
<h2>Mamadou Ndiaye</h2>
<h4>Sr Enginer</h4>
<p>
who is such a amn as does not want to get success <br>life is not meant for work
</p>
</div>
<div class="carousel-item text-center">
<img src="images/2.png" alt="Image 2" class="center-block">
<h2>Saliou Pouye</h2>
<h4>Sr Enginer</h4>
<p>
who is such a amn as does not want to get success <br>life is not meant for work
</p>
</div>
<div class="carousel-item text-center">
<img src="images/3.png" alt="Image 3" class="center-block">
<h2>Issa Seck</h2>
<h4>Sr Enginer</h4>
<p>
who is such a amn as does not want to get success <br>life is not meant for work
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</footer>
<script src="jquery.js"></script>
<script src="bootstrap_4/js/bootstrap.js"></script>
<script src="bootstrap_4/js/bootstrap.min.js"></script>
<script>
$(window).scroll(function(){
var top = $(window).scrollTop();
if(top>=60){
$("nav").addClass('secondary');
}
else
if($("nav").hasClass('secondary')){
$("nav").removeClass('secondary');
}
});
</script>
<script>
jQuery(document).ready(function($) {
$('.counter').counterUp({
delay: 10,
time: 1000
});
});
</script>
</body>
</html>