Skip to content

Commit

Permalink
fix: solve issue with social media communicatino
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmanuelDemey committed Feb 3, 2024
1 parent 5f46cc6 commit 620e6f3
Showing 1 changed file with 49 additions and 23 deletions.
72 changes: 49 additions & 23 deletions public/src/app/ui/social/social.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,29 +19,31 @@
</div>

<mat-divider></mat-divider>
@if (
isAdmin || company.sponsoring === "Gold" || company.sponsoring === "Silver"
) {
<div class="social-container-row">
<p>
Vous pouvez nous indiquer les comptes LinkedIN et X de votre société.
Ils seront utilisés par l'équipe pour les différentes communications
réalisées. Vous pouvez également indiquer les messages que vous
souhaitez voir publier sur les réseaux sociaux. Si vous n'avez pas
d'imagination, vous pouvez laisser l'équipe le faire pour vous. Dans ce
cas, seules les informations liées à vos profils LinkedIN et X nous sont
utiles.
</p>

<div class="social-container-row">
<p>
Vous pouvez également nous indiquer le message que vous souhaitez voir
publier sur les réseaux sociaux. Si vous n'avez pas d'imagination, vous
pouvez laisser l'équipe le faire pour vous. Dans ce cas, seules les
informations liées à vos profils LinkedIN et Twitter nous sont utiles.
</p>
<div class="social-fields">
<mat-form-field class="full-width">
<mat-label>Compte X (Twitter)</mat-label>
<input matInput type="text" [(ngModel)]="company.twitterAccount" />
</mat-form-field>
<div class="social-fields">
<mat-form-field class="full-width">
<mat-label>Compte X (Twitter)</mat-label>
<input matInput type="text" [(ngModel)]="company.twitterAccount" />
</mat-form-field>

<mat-form-field class="full-width">
<mat-label>Compte Linkedin</mat-label>
<input matInput type="text" [(ngModel)]="company.linkedinAccount" />
</mat-form-field>

<mat-form-field class="full-width">
<mat-label>Compte Linkedin</mat-label>
<input matInput type="text" [(ngModel)]="company.linkedinAccount" />
</mat-form-field>
@if (
isAdmin ||
company.sponsoring === "Platinium" ||
company.sponsoring === "Silver"
) {
<mat-checkbox [(ngModel)]="company.keepDevFestTeam"
>Laissez l'équipe organisatrice écrire vos messages!</mat-checkbox
>
Expand All @@ -57,9 +59,33 @@
<mat-label>Message LinkedIN</mat-label>
<textarea [(ngModel)]="company.linkedin" matInput></textarea>
</mat-form-field>
}
</div>
</div>
</div>
}

@if (
isAdmin ||
(company.sponsoring !== "Gold" && company.sponsoring !== "Silver")
) {
<div class="social-container-row">
<p>
Vous pouvez nous indiquer les comptes LinkedIN et X de votre société.
Ils seront utilisés par l'équipe pour les différentes communications
réalisées.
</p>
<div class="social-fields">
<mat-form-field class="full-width">
<mat-label>Compte X (Twitter)</mat-label>
<input matInput type="text" [(ngModel)]="company.twitterAccount" />
</mat-form-field>

<mat-form-field class="full-width">
<mat-label>Compte Linkedin</mat-label>
<input matInput type="text" [(ngModel)]="company.linkedinAccount" />
</mat-form-field>
</div>
</div>
}
<div class="social-container-row">
<p>
Vous pouvez également indiquer une petite description de votre société.
Expand Down

0 comments on commit 620e6f3

Please sign in to comment.