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.
SAE_2A_FA-Reseau_ALICA/php/templates/monProfil.html

50 lines
1.7 KiB

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
{% if profil %}
<title>{profil.getNom()} {profil.getprenom()} </title>
{% endif %}
<link rel="stylesheet" href="">
</head>
<body>
<header>
{% include "menu.html" %}
</header>
<div>
{% if profil %}
<h1>Profil de : {{ profil.nom }} {{ profil.prenom }}</h1>
<div>
<p><strong>Nom :</strong> {{ profil.nom }}</p>
<p><strong>Prenom :</strong> {{ profil.prenom }}</p>
<p><strong> :</strong> </p>
<p><strong> :</strong> </p>
<!-- Modification du profil -->
<a href="{{dir}}/user/displayProfil">Modifier profil</a>
</div>
{% else %}
<p>Error Profil</p>
{% endif %}
</div>
<div>
<!-- Partie expérience de l'utilisateur -->
{% include "detailExperience.html" %}
</div>
<div>
<!-- Partie formation de l'utilisateur -->
{% include "detailFormation.html" %}
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.3/dist/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>