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

23 lines
732 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>
2022-02-07 19:05:14 +01:00
<label for="pseudo">
2022-02-07 16:19:23 +01:00
{{ 'owner.name_label' | translate }}
2022-02-07 11:42:25 +01:00
</label>
2022-02-07 19:05:14 +01:00
<input class="input" type="text" id="pseudo" [(ngModel)]="storageService.vote_stack.pseudo" />
<button class="button is-default pull-left" [routerLink]="['/poll/' + pollName + '/consultation/vote']">
{{ 'SENTENCES.Back' | translate }}
</button>
<button
class="button is-success pull-right"
(click)="sendVoteStack()"
[disabled]="!storageService.vote_stack.pseudo"
>
{{ 'participation.vote_button' | translate }}
</button>
</div>
</div>