File size: 796 Bytes
63ee674
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="fr">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Profil | Espace Codage</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <custom-navbar></custom-navbar>
  
  <div class="app-container">
    <main class="main-content">
      <div class="content-header">
        <div class="tag">Profil</div>
      </div>
      
      <div class="empty-state">
        <h3>Page de profil</h3>
        <p>Cette page affichera les informations et paramètres de votre compte.</p>
      </div>
    </main>
  </div>
  
  <custom-footer></custom-footer>
  
  <script src="components/navbar.js"></script>
  <script src="components/footer.js"></script>
  <script src="script.js"></script>
</body>
</html>