You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.0 KiB
46 lines
1.0 KiB
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Profil Utilisateur</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f4f4f4;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
align-items: start;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.user-profile {
|
|
background-color: #7FBFFF;
|
|
padding: 20px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
max-width: 400px;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
color: #333;
|
|
}
|
|
|
|
p {
|
|
color: #666;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="user-profile">
|
|
<h1>Votre profil</h1>
|
|
<p><strong>Pseudo : </strong> {{ username }} </p>
|
|
<p><strong>Email : {{ email }} </strong></p>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |