funky-framadate-front/src/app/debugger/debugger.component.html

49 lines
1.1 KiB
HTML
Raw Normal View History

2019-08-10 16:21:12 +02:00
<div class="well debug">
<strong>
<h2 i18n>
infos de debug
</h2>
<span class="demo">
2019-10-24 16:08:56 +02:00
{{"config.demo"|translate}}
</span>
</strong>
<ul>
<li>
étape actuelle {{config.step}} / {{config.stepMax}}
</li>
<li>
formulaire valide : {{formIsValid}}
</li>
<li>
type de formulaire: {{config.pollType}}
</li>
</ul>
2020-01-15 17:55:22 +01:00
<button
class="btn btn--primary"
i18n
(click)="config.createPoll()"
>
Envoyer le formulaire
</button>
<button
class="btn btn--primary"
i18n
(click)="config.getPollById(1, 'example password')"
>
get poll 1
</button>
<button
class="btn btn--primary"
i18n
(click)="config.getMyPolls( 'tktest@tktest.com')"
>
get my polls
</button>
<button class="btn btn--success" (click)="launchToast()">
launch success toast
</button>
<a [routerLink]="'/vote/poll/id/3'" class="btn btn--success">
See example of vote page
</a>
2019-08-10 16:21:12 +02:00
</div>