Initial commit
This commit is contained in:
commit
f073e69417
28 changed files with 2564 additions and 0 deletions
26
htdocs/views/home.html
Normal file
26
htdocs/views/home.html
Normal 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 }} !
|
||||
</h1>
|
||||
<hr class="my-4">
|
||||
|
||||
<p class="lead">Voici la liste des questionnaires :</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>
|
||||
Reference in a new issue