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

27 lines
580 B
HTML
Raw Normal View History

2020-03-04 11:07:12 +00:00
<div class="jumbotron mt-2">
<img class="float-right" src="https://photos.cri.epita.fr/thumb/mercie_d" alt="avatar" style="max-height: 150px">
<h1>
Bienvenue {{ isLogged.login }}&nbsp;!
</h1>
<hr class="my-4">
<p class="lead">Voici la liste des questionnaires&nbsp;:</p>
<table class="table" ng-controller="SurveysController">
<thead>
<tr>
<th>Intitulé</th>
<th>État</th>
<th>Date</th>
<th>Score</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="survey in surveys">
<td>{{ survey }}</td>
</tr>
</tbody>
</table>
</div>