forked from Adrien140401/ProjectWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofil.html
84 lines (80 loc) · 3.41 KB
/
profil.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Better Humanity</title>
<meta name="viewport" content="width-device-width, initial-scale=1">
<link rel="stylesheet" href="/style/login.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<script src="app.js" charset="utf-8"></script>
</head>
<body>
<header>
<div class="betterhumanity"><a href="#">Better Humanity</a></div>
<nav>
<ul class="nav-links">
<li><a href="index.html">Acceuil</a></li>
<li><a href="produits.html">Produits</a></li>
<li><a href="login.html">LOGIN</a></li>
<li><a href="profil.html">Profil</a></li>
<li><a href="cart.html">SHOPPING CART</a></li>
</ul>
</nav>
<a class="contact" href="contactpage.html"><button>Contact</button></a>
</header>
<section class="main">
<div class="titleContainer">
<h1>PROFIL</h1>
<input id="email" placeholder="example@test.fr">
<input id="password" placeholder="*******">
<input id="firstName" placeholder="firstName">
<input id="name" placeholder="name">
<input id="phone" placeholder="0669604479">
</div>
<button onclick="update()">UPDATE ACCOUNT</button>
<button onclick="suppr()">DELETE ACCOUNT</button>
</section>
<div class="footer">
<div class="container">
<div class="row">
<div class="footer-col">
<h4>compagnie</h4>
<ul>
<li><a href="#">à propos</a></li>
<li><a href="#">nos services</a></li>
<li><a href="#">politique privée</a></li>
<li><a href="#">programmes associés</a></li>
</ul>
</div>
<div class="footer-col">
<h4>aide</h4>
<ul>
<li><a href="#">FAQ</a></li>
<li><a href="#">shipping</a></li>
<li><a href="#">retours</a></li>
<li><a href="#">status</a></li>
<li><a href="#">options de paiement</a></li>
</ul>
</div>
<div class="footer-col">
<h4>boutique en ligne</h4>
<ul>
<li><a href="#">nos produits</a></li>
</ul>
</div>
<div class="footer-col">
<h4>réseaux</h4>
<div class="social-links">
<a href="https://fr-fr.facebook.com/"><i class="fab fa-facebook-f"></i></a>
<a href="https://twitter.com/login"><i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com/?hl=fr"><i class="fab fa-instagram"></i></a>
<a href="https://fr.linkedin.com/"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
</div>
</div>
</footer>
<script src="/script/profil.js"></script>
</body>
</html>