|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="fr">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<title> Mon profil </title>
|
|
|
|
<link rel="stylesheet" href="">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<header>
|
|
|
|
{% include "menu.html" %}
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
{% if profil %}
|
|
|
|
<!-- <p>{{ dump(profil) }}</p> -->
|
|
|
|
<!-- By Thomas -->
|
|
|
|
<!-- Je ne comprends pas pourquoi le contenu du profil ne s'affiche pas -->
|
|
|
|
<h1>Profil de : {{ profil.getNom() }} {{ profil.getPrenom() }}</h1>
|
|
|
|
<div>
|
|
|
|
<p><strong>Mail :</strong> {{ profil.getEmail() }}</p>
|
|
|
|
<p><strong>Linkedin :</strong> {{ profil.getLinkedinUrl() }}</p>
|
|
|
|
<p><strong>Git :</strong> {{ profil.getGithubUrl() }}</p>
|
|
|
|
<p><strong>Portforlio :</strong> {{ profil.getPortfolioUrl() }}</p>
|
|
|
|
|
|
|
|
<!-- Modification du profil -->
|
|
|
|
</div>
|
|
|
|
{% else %}
|
|
|
|
<p>Error Profil</p>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<h1> Mes expériences </h1>
|
|
|
|
<!-- Partie expérience de l'utilisateur -->
|
|
|
|
{% include "detailExperience.html" %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<h1> Mes formations </h1>
|
|
|
|
<!-- 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>
|