32 lines
868 B
Plaintext
32 lines
868 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Page d'accueil - Smart Building</title>
|
|
<link rel="stylesheet" href="/styleMembres.css" />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Inter&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<script
|
|
src="https://kit.fontawesome.com/a076d05399.js"
|
|
crossorigin="anonymous"
|
|
></script>
|
|
</head>
|
|
<body>
|
|
<%- include('partials/header') %>
|
|
|
|
<main>
|
|
<h1>Member Details</h1>
|
|
<p>Member ID: <%= id %></p>
|
|
<!-- Display the ID passed from the route -->
|
|
|
|
<!-- More member details would go here, once you fetch them -->
|
|
</main>
|
|
|
|
<%- include('partials/footer') %>
|
|
</body>
|
|
</html>
|