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

44 lines
828 B
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>
2019-08-10 16:21:12 +02:00
</div>
<button
2019-12-04 12:45:50 +01:00
class="btn btn--primary"
i18n
(click)="config.createPoll()"
2019-08-10 16:21:12 +02:00
>
2019-12-04 12:45:50 +01:00
Envoyer le formulaire
2019-08-10 16:21:12 +02:00
</button>
<button
2019-12-04 12:45:50 +01:00
class="btn btn--primary"
i18n
(click)="config.getPollById(1, 'example password')"
2019-08-10 16:21:12 +02:00
>
2019-12-04 12:45:50 +01:00
get poll 1
2019-08-10 16:21:12 +02:00
</button>
<button
2019-10-16 21:33:49 +02:00
class="btn btn--primary"
i18n
2019-12-04 12:45:50 +01:00
(click)="config.getMyPolls( 'tktest@tktest.com')"
>
2019-12-04 12:45:50 +01:00
get my polls
2019-08-10 16:21:12 +02:00
</button>