funky-framadate-front/src/app/features/consultation/consultation-user/consultation-user.component...

26 lines
715 B
HTML
Raw Normal View History

2022-02-07 11:42:25 +01:00
<app-stepper [step_current]="4" [step_max]="pollService.step_max"></app-stepper>
<div class="step">
<div class="user-infos">
<h2 class="title is-2">
2022-02-07 16:19:23 +01:00
{{ 'owner.title' | translate }}
2022-02-07 11:42:25 +01:00
</h2>
<label for="name">
2022-02-07 16:19:23 +01:00
{{ 'owner.name_label' | translate }}
2022-02-07 11:42:25 +01:00
</label>
<input class="input" type="text" id="name" />
2022-02-07 11:42:25 +01:00
<div class="columns">
<div class="column">
2022-02-07 16:19:23 +01:00
<button class="button is-default" [routerLink]="['/poll/' + pollName + '/consultation/vote']">
{{ 'SENTENCES.Back' | translate }}
2022-02-07 11:42:25 +01:00
</button>
</div>
<div class="column">
2022-02-07 16:19:23 +01:00
<button class="button is-success" (click)="sendVoteStack()">
{{ 'participation.vote_button' | translate }}
2022-02-07 11:42:25 +01:00
</button>
</div>
</div>
</div>
</div>