You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
913 B
36 lines
913 B
<div class="container has-text-centered"> |
|
<div class="columns"> |
|
<div class="column"> |
|
<h1>Mes sondages</h1> |
|
</div> |
|
</div> |
|
<div *ngIf="pollsAreLoaded"> |
|
<div class="columns"> |
|
<div class="column"> |
|
<table class="table is-bordered is-striped is-narrow is-hoverable is-fullwidth"> |
|
<thead></thead> |
|
<tbody> |
|
<tr *ngFor="let poll of (_user | async)?.polls"> |
|
<th>{{ poll.title }}</th> |
|
<td> |
|
<a routerLink="{{ '../../poll/' + poll.slug + '/consultation' }}"> |
|
{{ poll.slug }} |
|
</a> |
|
</td> |
|
</tr> |
|
</tbody> |
|
</table> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="columns"> |
|
<div class="column"> |
|
<form (submit)="sendRetrieveEmail()"> |
|
<input type="email" autofocus="autofocus" placeholder="contact@exemple.com" /> |
|
<button class="button is-primary"> |
|
envoyez-moi la liste par email |
|
</button> |
|
</form> |
|
</div> |
|
</div> |
|
</div>
|
|
|