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

53 lines
1.2 KiB
HTML
Raw Normal View History

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