-
Notifications
You must be signed in to change notification settings - Fork 1
/
mon_compte.html
105 lines (98 loc) · 3.57 KB
/
mon_compte.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
<!DOCTYPE html>
<html lang="auto" dir="ltr">
<head>
<meta charset="utf-8">
<title>EL HAJJAM Topographie</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style_compte.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js" charset="utf-8"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
</head>
<header>
<div class="inner-width">
<a href="accueil.html" class="logo"><img src="logo.png" alt="EL HAJJAM Topographie"></a>
<i class="menu-toggle-btn fas fa-bars"></i>
<nav class="navigation-menu">
<a href="accueil.html"><i class="fas fa-home home"></i> Accueil </a>
<a href="presentaion.html"><i class="fas fa-align-left about"></i> Presentation </a>
<a href="realisation.html"><i class="fab fa-buffer works"></i> Réalisations </a>
<a href="mon_compte.html"><i class="fas fa-users team"></i> Mon Compte </a>
<a href="contact.html"><i class="fas fa-headset contact"></i> Contact </a>
</nav>
</div>
</header>
<script type="text/javascript">
$(".menu-toggle-btn").click(function(){
$(this).toggleClass("fa-times");
$(".navigation-menu").toggleClass("active");
});
</script>
<body>
<section>
<div class="container">
<div class="header">
<h1> </h1>
</div>
<div class="main">
<form>
<span>
<i class="fa fa-user"></i>
<input type="text" placeholder="Username" name="">
</span><br>
<span>
<i class="fa fa-lock"></i>
<input type="password" placeholder="Password" name="">
</span><br>
<button>login</button>
</form>
</div>
</div>
</section>
</body>
<footer>
<div class="contenu-footer">
<div class="bloc footer-service">
<h3> Accueil </h3>
<ul class="liste-accueil">
<li> <a href="accueil.html">accueil</a></li>
<li> <a href="presentaion.html">Presentation</a></li>
<li> <a href="realisation.html">realisation</a></li>
<li> <a href="mon_compte.html">mon compte</a></li>
<li> <a href="contact.html">contact</a></li>
</ul>
</div>
<div class="bloc footer-contact">
<h3> Restons en contact</h3>
<p>✆ (+212)661960089</p>
<p>✆ (+212)658542008</p>
<p>📧 [email protected]</p>
<p>📍 N 84, Res EL Aziziya, Av. Arabie Saoudite, Tanger, Maroc</p>
</div>
<div class="bloc footer-media">
<h3> Nos réseaux</h3>
<div class="wrapper">
<div class="button">
<div class="icon">
<i class="fab fa-facebook-f" ></i>
</div>
<span> <a href="https://web.facebook.com/ElHajjam-Topographie-102566978872736"> Facebook </a></span>
</div>
<div class="button">
<div class="icon">
<i class="fab fa-twitter"></i>
</div>
<span> <a href=""> Twitter</a> </span>
</div>
<div class="button">
<div class="icon">
<i class="fab fa-linkedin"> </i>
</div>
<span> <a href="https://www.linkedin.com/company/ste-elhajjam-topographie-sarlau/"> linkedin </a></span>
</div>
<img src="logo.jpg" alt="EL HAJJAM Topographie">
</div>
</div>
</footer>
</html>
</body>
</html>