funky-framadate-front/src/app/features/administration/form/form.component.html

14 lines
373 B
HTML
Raw Normal View History

2020-10-29 18:43:19 +01:00
<div class="admin-form">
<header>
2021-10-19 10:23:54 +02:00
<h2 classs="title is-2">
{{ 'creation.title' | translate }}
2021-10-19 10:23:54 +02:00
</h2>
<app-stepper [step_current]="pollService.step_current" [step_max]="pollService.step_max"></app-stepper>
</header>
2021-10-19 12:53:19 +02:00
<section class="step-container min-height">
<router-outlet>
<app-step-one [form]="form"></app-step-one>
</router-outlet>
</section>
2020-10-29 18:43:19 +01:00
</div>