✨ feat(contact): Remplace l'email par un lien "Nous rejoindre" sur la page contact.
🎨 style(app): Ajoute du style pour l'affichage des rôles dans le formulaire d'adhésion. 🌐 i18n(translations): Adapte les textes pour le formulaire d'adhésion. 🐛 fix(JoinController): Corrige une erreur d'affichage des données du formulaire.
This commit is contained in:
@@ -9,3 +9,11 @@
|
||||
.epage{
|
||||
color: orangered;
|
||||
}
|
||||
|
||||
#join_role {
|
||||
display: flex;
|
||||
label {
|
||||
padding-right: 0.25rem;
|
||||
padding-left: 0.25rem;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ class JoinController extends AbstractController
|
||||
$form = $this->createForm(JoinType::class,$j);
|
||||
$form->handleRequest($request);
|
||||
if($form->isSubmitted() && $form->isValid()){
|
||||
|
||||
dd($j);
|
||||
}
|
||||
return $this->render('join.twig',[
|
||||
'form' => $form->createView(),
|
||||
|
||||
@@ -107,7 +107,7 @@
|
||||
{{ 'contact_info.join_text'|trans }}
|
||||
</p>
|
||||
<p class="mt-2 font-bold text-indigo-600">
|
||||
<a href="mailto:contact@e-cosplay.fr">contact@e-cosplay.fr</a>
|
||||
<a href="{{ path('app_recruit') }}">{{ 'Nous rejoindre'|trans }}</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -400,7 +400,7 @@ contact_info.subtitle: "无论是技术问题、合作机会还是简单的问
|
||||
contact_info.email: "电子邮件"
|
||||
contact_info.address: "邮政地址"
|
||||
contact_info.join_title: "加入协会"
|
||||
contact_info.join_text: "您想加入我们或获取有关会员资格的更多信息吗?请直接给我们发送电子邮件至:"
|
||||
contact_info.join_text: "您想加入我们或获取有关会员资格的更多信息吗?"
|
||||
form.title: "给我们留言"
|
||||
form.submit_button: "发送消息"
|
||||
contact_form.name.label: "名字"
|
||||
|
||||
@@ -428,7 +428,7 @@ contact_info.subtitle: "Whether it's for a technical question, a partnership opp
|
||||
contact_info.email: "Email"
|
||||
contact_info.address: "Mailing Address"
|
||||
contact_info.join_title: "Join the Association"
|
||||
contact_info.join_text: "Would you like to join us or get more information about membership? Please write to us directly at:"
|
||||
contact_info.join_text: "Would you like to join us or get more information about membership?"
|
||||
|
||||
# FORMULAIRE (RIGHT COLUMN)
|
||||
form.title: "Send us a Message"
|
||||
|
||||
@@ -403,7 +403,7 @@ contact_info.subtitle: "Que ce soit pour une question technique, une opportunit
|
||||
contact_info.email: "E-mail"
|
||||
contact_info.address: "Adresse Postale"
|
||||
contact_info.join_title: "Rejoindre l'association"
|
||||
contact_info.join_text: "Vous souhaitez nous rejoindre ou obtenir plus d'informations sur les modalités d'adhésion ? Veuillez nous écrire directement à :"
|
||||
contact_info.join_text: "Vous souhaitez nous rejoindre ou obtenir plus d'informations sur les modalités d'adhésion ?"
|
||||
form.title: "Envoyez-nous un Message"
|
||||
form.submit_button: "Envoyer le message"
|
||||
contact_form.name.label: "Prénom"
|
||||
@@ -961,4 +961,4 @@ form:
|
||||
form_feedback:
|
||||
success: "Votre candidature a été envoyée avec succès ! Le bureau l'étudiera prochainement."
|
||||
error: "Une erreur est survenue. Veuillez vérifier vos informations."
|
||||
|
||||
join_at: 'messages'
|
||||
|
||||
Reference in New Issue
Block a user