This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
atsebay.t/htdocs/views/home.html

24 lines
743 B
HTML
Raw Normal View History

2020-03-08 00:06:44 +00:00
<div class="jumbotron mt-2" ng-if="isLogged">
<img class="float-right" src="https://photos.cri.epita.fr/thumb/{{ isLogged.login }}" alt="avatar" style="max-height: 150px">
2020-03-04 11:07:12 +00:00
<h1>
Bienvenue {{ isLogged.login }}&nbsp;!
</h1>
<hr class="my-4">
<p class="lead">Voici la liste des questionnaires&nbsp;:</p>
2020-03-08 00:06:44 +00:00
<survey-list surveys="surveys" islogged="isLogged"></survey-list>
</div>
<div class="mt-2" ng-if="!isLogged">
<h3>Cours</h3>
<ul>
<li><a href="adlin" target="_self">ADministration Linux avancée</a></li>
<li><a href="fic" target="_self">FIC</a></li>
<li><a href="virli" target="_self">Virtualisation légère</a></li>
</ul>
2020-03-04 11:07:12 +00:00
2020-03-08 00:06:44 +00:00
<h3>Questionnaires</h3>
<survey-list surveys="surveys"></survey-list>
2020-03-04 11:07:12 +00:00
</div>