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

28 lines
701 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>
2021-10-15 10:37:38 +02:00
<app-stepper [step_current]="step_current" [step_max]="step_max"></app-stepper>
</header>
<section class="step-container">
<router-outlet>
<app-step-one></app-step-one>
</router-outlet>
</section>
<footer>
<div class="columns">
<div class="column">
2021-10-19 10:23:54 +02:00
<button class="button is-large is-secondary" [routerLink]="previousRouteName" *ngIf="step_current != 1">
précédent
</button>
</div>
<div class="column">
2021-10-19 10:23:54 +02:00
<button class="button is-primary is-large is-pulled-right" [disabled]="form.invalid">suivant</button>
2021-10-15 09:39:51 +02:00
</div>
</div>
</footer>
<hr />
2020-10-29 18:43:19 +01:00
</div>