-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccount.html
193 lines (176 loc) · 8.56 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mon compte</title>
<link rel="stylesheet" href="css/account.css" />
<link rel="stylesheet" href="css/responsive.css" />
<script src="https://kit.fontawesome.com/1e6afd82c6.js" crossorigin="anonymous"></script>
<link rel="icon" type="image/jpg" href="assets/img/logo.png" />
</head>
<body>
<div class="container">
<header>
<nav class="nav-bar white-background">
<div class="background"></div>
<div class="shop-logo">
<a href="/">
<img src="assets/img/logo.png" alt="logo marque" />
<h1>Pear Vendor</h1>
</a>
</div>
<div class="links-menu">
<ul>
<li class="link">
<a href="/" class="selected">Accueil</a>
</li>
<li class="link sub-menu-parent">
<a href="/store.html" class="store-link">
Magasin
<i class="fa-solid fa-chevron-down"></i>
</a>
<ul class="sub-menu">
<li>
<a href="/category.html">Téléphones</a>
</li>
<li>
<a href="/category.html">Ordinateurs</a>
</li>
<li>
<a href="/category.html">Télévisions</a>
</li>
</ul>
</li>
<li class="link">
<a href="/jsp/pages/account.html">Mon compte</a>
</li>
<li class="link">
<a href="/cart.html" class="cart-link">
<i class="fa-solid fa-cart-shopping"></i>
</a>
</li>
</ul>
</div>
</nav>
</header>
<section class="content-area">
<h1 class="page-title">Mon compte</h1>
<div class="product-tabs">
<ul class="tabs-list">
<li class="tab active" data-tab-name="set-account">Gérer compte</li>
<li class="tab" data-tab-name="orders">Mes commandes</li>
<li class="tab" data-tab-name="products">Gérer les produits</li>
<li class="tab" data-tab-name="users-list">Liste noire</li>
</ul>
<div class="tabs-content-list">
<div class="tab-content active" id="set-account">
<div class="customer-info-container" id="customer-info-firstname">
<span>Nom : </span>
<span class="text-modif">Dumartin</span>
</div>
<div class="customer-info-container" id="customer-info-name">
<span>Prénom : </span>
<span class="text-modif">Hugo</span>
</div>
<div class="customer-info-container" id="customer-info-email">
<span>email : </span>
<span class="text-modif">[email protected]</span>
</div>
<div class="customer-info-container" id="customer-info-adresse">
<span>adresse : </span>
<span class="text-modif">8 rue jean charles de ses morts</span>
</div>
<a href="#">Modifier</a>
</div>
<div class="tab-content" id="orders">
<section class="orders-container">
<h2>Historique des commandes :</h2>
<table>
<tr class="tr-head">
<th id="order-date-thead">Date de commande</th>
<th id="order-id-thead">N° de commande</th>
<th id="order-products-thead">Produits</th>
<th id="order-price-thead">Total</th>
<th id="order-state-thead">Statut</th>
</tr>
<tr>
<td>3 mars 2020</td>
<td><a href="#">827741596</a></td>
<td>Iphone39</td>
<td>0.99€</td>
<td>livrée</td>
</tr>
<tr>
<td>12 mars 2020</td>
<td><a href="#">85423</a></td>
<td>Iphone2</td>
<td>120.99€</td>
<td>en cours</td>
</tr>
</table>
</section>
</div>
<div class="tab-content" id="products">
<section class="gestion-products-container">
<h2>Produits en ligne :</h2>
<table>
<tr class="tr-head">
<th id="gestion-product-id-thead">Identifiant produit</th>
<th id="gestion-product-product-thead">Produit</th>
<th id="gestion-product-category-thead">Catégorie</th>
<th id="gestion-product-stock-thead">Stock</th>
<th id="gestion-product-action-thead">Action</th>
</tr>
<tr>
<td>7845920</td>
<td>Iphone 12</td>
<td>Smartphone</td>
<td><input type="number" value="2" min="0"></td>
<td><div><a href="#">Supprimer</a> <a href="#">Modifier</a></div></td>
</tr>
<tr>
<td>89259</td>
<td>Iphone 14</td>
<td>Smartphone</td>
<td><input type="number" value="2" min="0"></td>
<td><div class="action-buttons"><a href="#">Supprimer</a> <a href="#">Modifier</a></div></td>
</tr>
</table>
<a href="#" class="red-button">Ajouter un produit</a>
</section>
</div>
<div class="tab-content" id="users-list">
<section class="users-list-container">
<h2>Gestion de la liste d'utilisateurs :</h2>
<table>
<tr class="tr-head">
<th id="users-list-id-thead">Identifiant</th>
<th id="users-list-firstname-thead">Nom</th>
<th id="users-list-name-thead">Prénom</th>
<th id="users-list-action-thead">Action</th>
</tr>
<tr>
<td>36772</td>
<td>Dumartin</td>
<td>Hugo</td>
<td><div class="action-buttons"><a href="#">Mettre admin</a> <a href="#">Débloquer</a></div><i class="fa-solid fa-xmark cross-delete-btn cross-account"></i></td>
</tr>
<tr>
<td>12098</td>
<td>Dempt</td>
<td>jules</td>
<td><div class="action-buttons"><a href="#">Supp admin</a> <a href="#">Bloquer</a></div><i class="fa-solid fa-xmark cross-delete-btn cross-account"></i></td>
</tr>
</table>
<a href="#" class="red-button">Ajouter à la liste</a>
</section>
</div>
</div>
</div>
</section>
</div>
<script src="/js/product.js"></script>
</body>
</html>