funky-framadate-front/src/app/pages/end-confirmation/end-confirmation.component....

82 lines
1.9 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<h1 i18n>
{{"resume.title"|translate}}
</h1>
<section class="admin">
<h2 i18n>{{"resume.admins"|translate}}</h2>
<p>
Votre sondage « 
<span class="poll-title">
{{config.title}}
</span>
 » a bien été créé !
</p>
<p>
Voici les liens daccès au sondage, conservez-les soigneusement !
(Si vous les perdez vous pourrez toujours les recevoir par email)
</p>
<p>
Pour accéder au sondage et à tous ses paramètres : {{config.urlAdmin}}
</p>
<button
class="btn"
(click)="copyLink(config.urlAdmin)"
>
<i class="fa fa-copy"></i>
Copier le lien
</button>
<a href="{{config.urlAdmin}}">
Voir le sondage coté administrateur·ice
</a>
<p class="note">
Note : Le sondage sera supprimé {{config.deletionDateAfterLastModification}} jours après la date de sa dernière
modification.
</p>
</section>
<section class="public">
<h2 i18n>{{"resume.users"|translate}}</h2>
<p>
Pour accéder au sondage : {{config.urlPublic}}
</p>
<button
class="btn"
(click)="copyLink(config.urlPublic)"
>
<i class="fa fa-copy"></i>
Copier le lien
</button>
<a href="{{config.urlPublic}}">
Voir le sondage
</a>
</section>
<section class="mail">
<h2 i18n>{{"resume.links_mail"|translate}}</h2>
<p>
Pour être sur de retrouver ces liens, nous pouvons vous les envoyer sur votre mail
mail :
<input
type="email"
[(ngModel)]="mailToRecieve"
paceholder="email"
>
</p>
<button
class="btn"
(click)="sendToEmail()"
><i class="fa fa-paper-plane"></i>
Envoyer les liens du sondage
</button>
<a href="{{config.urlPublic}}">
Voir le sondage
</a>
</section>