Initial commit

This commit is contained in:
nemunaire 2020-03-04 12:07:12 +01:00
commit f073e69417
28 changed files with 2564 additions and 0 deletions

26
htdocs/views/home.html Normal file
View file

@ -0,0 +1,26 @@
<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>