funky-framadate-front/src/app/pages/resume/resume.component.html

56 lines
1.2 KiB
HTML
Raw Normal View History

2020-01-20 15:01:56 +01:00
<h1 >
2019-11-23 15:46:07 +01:00
Récapitulatif
2020-01-20 15:01:56 +01:00
</h1 >
<div class='card content' >
2019-11-23 15:46:07 +01:00
2020-01-20 15:01:56 +01:00
<h2 class="hero-title title" >
{{config.title}}
</h2 >
<div class="creation" >
créé par
{{config.myName}}
</div >
<div class="description" >
<p >
{{config.description}}
</p >
</div >
<section >
<ul >
<li
markdown
*ngFor="let questions of config.answers" >
<img
class='img-thumbnail'
src='{{questions.url}}'
alt='image {{questions.url}}' >
{{questions.id + 1}}. {{questions.text}}
</li >
</ul >
</section >
</div >
2020-01-20 15:23:26 +01:00
2020-01-20 15:01:56 +01:00
<button
2020-01-20 15:23:26 +01:00
(click)='submitCreationAndGoToEnd()'
2020-01-20 15:01:56 +01:00
class="btn btn--primary btn--full"
2020-01-20 15:23:26 +01:00
i18n="@@confirm" >
C'est parfait!
<i
class='fa fa-paper-plane'
*ngIf="!config.loading" ></i >
<span
class="loading"
*ngIf="config.loading" >
<i class="fa fa-refresh fa-spin fa-fw" ></i >
</span >
2020-01-20 15:01:56 +01:00
</button >
<div class="back" >
<a
[routerLink]="'/step/answers'"
class="prev" >
2019-11-23 15:46:07 +01:00
Retour
2020-01-20 15:01:56 +01:00
</a >
</div >