2019-08-11 16:49:58 +02:00
|
|
|
<section class="creation">
|
2019-11-19 11:19:21 +01:00
|
|
|
<h1>
|
|
|
|
{{"creation.title"|translate}}
|
|
|
|
</h1>
|
|
|
|
<p
|
|
|
|
class="description"
|
|
|
|
i18n
|
|
|
|
>
|
|
|
|
{{"config.title"|translate}}
|
|
|
|
</p>
|
|
|
|
<div class="btn-next">
|
|
|
|
<a
|
|
|
|
[routerLink]="'/home'"
|
|
|
|
>
|
2019-08-12 15:13:05 +02:00
|
|
|
<span
|
2019-11-19 11:19:21 +01:00
|
|
|
class="text"
|
|
|
|
i18n
|
|
|
|
>
|
2019-10-01 16:52:36 +02:00
|
|
|
{{"config.letsgo"|translate}}
|
2019-08-12 15:13:05 +02:00
|
|
|
</span>
|
2019-11-19 11:19:21 +01:00
|
|
|
<span class="icon right">
|
2019-08-12 15:13:05 +02:00
|
|
|
>
|
|
|
|
</span>
|
2019-11-19 11:19:21 +01:00
|
|
|
</a>
|
|
|
|
</div>
|
2019-08-11 16:49:58 +02:00
|
|
|
</section>
|
2019-08-12 21:54:57 +02:00
|
|
|
|
2019-08-11 16:49:58 +02:00
|
|
|
<section class="recuperation">
|
2019-11-19 11:19:21 +01:00
|
|
|
<h1>
|
|
|
|
{{"config.find_my_polls"|translate}}
|
|
|
|
</h1>
|
|
|
|
<form
|
|
|
|
(ngSubmit)="findMyPollsByEmail(emailToFind.value)"
|
|
|
|
>
|
|
|
|
<label
|
|
|
|
class="description"
|
|
|
|
for="email"
|
|
|
|
i18n
|
|
|
|
>
|
|
|
|
{{"config.find_helper"|translate}} :
|
|
|
|
</label>
|
|
|
|
<input
|
|
|
|
#emailToFind
|
|
|
|
type="email"
|
|
|
|
name="mail"
|
|
|
|
id="email"
|
|
|
|
autofocus="autofocus"
|
|
|
|
/>
|
|
|
|
<input
|
|
|
|
type="submit"
|
|
|
|
class="btn btn-block"
|
|
|
|
i18n-value="'config.find_button'|translate"
|
|
|
|
/>
|
|
|
|
</form>
|
|
|
|
</section>
|
|
|
|
<section class="list-my-polls">
|
|
|
|
<ul class="poll-list" *ngFor="let poll of config.myPolls">
|
|
|
|
<li> poll</li>
|
|
|
|
</ul>
|
2019-08-11 16:49:58 +02:00
|
|
|
</section>
|