Merge pull request 'feat/send-mail-to-member' (#81) from feat/send-mail-to-member into master
Reviewed-on: AstrolabeCAE/SiteWebAstrolabe#81
This commit is contained in:
commit
9fd1712328
@ -1,12 +1,16 @@
|
|||||||
# Prevent viewing of htaccess file.
|
# Prevent viewing of htaccess file.
|
||||||
<Files .htaccess>
|
<Files .htaccess>
|
||||||
order allow,deny
|
<IfModule mod_access_compat.c>
|
||||||
deny from all
|
Order Allow,Deny
|
||||||
|
Deny from all
|
||||||
|
</IfModule>
|
||||||
</Files>
|
</Files>
|
||||||
# Prevent directory listings
|
# Prevent directory listings
|
||||||
Options All -Indexes
|
Options All -Indexes
|
||||||
ErrorDocument 404 /404.html
|
ErrorDocument 404 /404.html
|
||||||
|
<IfModule mod_rewrite.c>
|
||||||
RewriteEngine On
|
RewriteEngine On
|
||||||
RewriteCond %{HTTP:X-Forwarded-Proto} !https [OR]
|
RewriteCond %{HTTP:X-Forwarded-Proto} !https [OR]
|
||||||
RewriteCond %{HTTP_HOST} ^astrolabe\.coop [NC]
|
RewriteCond %{HTTP_HOST} ^astrolabe\.coop [NC]
|
||||||
RewriteRule ^ https://www.astrolabe.coop%{REQUEST_URI} [L,NE,R=301]
|
RewriteRule ^ https://www.astrolabe.coop%{REQUEST_URI} [L,NE,R=301]
|
||||||
|
</IfModule>
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
</p>
|
</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<ul class="social-links">
|
<ul class="social-links">
|
||||||
|
<li><a href="{{ [url , "/contact/"] | join | url }}" title="Écrire à {{ name }}" class="member-contact-at"><span>@</span></a></li>
|
||||||
{% if socialMastodon %}
|
{% if socialMastodon %}
|
||||||
<li><a href="{{ socialMastodon }}" title="mastodon"><svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M16.956 18.293c3.007-.36 5.625-2.212 5.954-3.905.519-2.667.476-6.508.476-6.508 0-5.207-3.411-6.733-3.411-6.733C18.255.357 15.302.025 12.233 0h-.075c-3.068.025-6.02.357-7.74 1.147 0 0-3.41 1.526-3.41 6.733 0 .315-.003.647-.004.993-.005.96-.01 2.024.018 3.136.123 5.091.933 10.11 5.64 11.355 2.171.575 4.035.695 5.535.613 2.722-.151 4.25-.972 4.25-.972l-.09-1.974s-1.945.613-4.13.538c-2.163-.074-4.448-.233-4.798-2.89a5.448 5.448 0 01-.048-.745s2.124.519 4.816.642c1.647.076 3.19-.096 4.759-.283zm2.406-3.705V8.283c0-1.288-.328-2.312-.987-3.07-.68-.757-1.57-1.145-2.674-1.145-1.278 0-2.246.491-2.885 1.474l-.623 1.043-.622-1.043c-.64-.983-1.608-1.474-2.886-1.474-1.104 0-1.994.388-2.674 1.146-.659.757-.987 1.781-.987 3.07v6.303h2.498V8.47c0-1.29.543-1.945 1.628-1.945 1.2 0 1.802.777 1.802 2.312v3.35h2.483v-3.35c0-1.535.601-2.312 1.801-2.312 1.086 0 1.629.655 1.629 1.945v6.119h2.497z"/></svg></a></li>
|
<li><a href="{{ socialMastodon }}" title="mastodon"><svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M16.956 18.293c3.007-.36 5.625-2.212 5.954-3.905.519-2.667.476-6.508.476-6.508 0-5.207-3.411-6.733-3.411-6.733C18.255.357 15.302.025 12.233 0h-.075c-3.068.025-6.02.357-7.74 1.147 0 0-3.41 1.526-3.41 6.733 0 .315-.003.647-.004.993-.005.96-.01 2.024.018 3.136.123 5.091.933 10.11 5.64 11.355 2.171.575 4.035.695 5.535.613 2.722-.151 4.25-.972 4.25-.972l-.09-1.974s-1.945.613-4.13.538c-2.163-.074-4.448-.233-4.798-2.89a5.448 5.448 0 01-.048-.745s2.124.519 4.816.642c1.647.076 3.19-.096 4.759-.283zm2.406-3.705V8.283c0-1.288-.328-2.312-.987-3.07-.68-.757-1.57-1.145-2.674-1.145-1.278 0-2.246.491-2.885 1.474l-.623 1.043-.622-1.043c-.64-.983-1.608-1.474-2.886-1.474-1.104 0-1.994.388-2.674 1.146-.659.757-.987 1.781-.987 3.07v6.303h2.498V8.47c0-1.29.543-1.945 1.628-1.945 1.2 0 1.802.777 1.802 2.312v3.35h2.483v-3.35c0-1.535.601-2.312 1.801-2.312 1.086 0 1.629.655 1.629 1.945v6.119h2.497z"/></svg></a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -1,9 +1,13 @@
|
|||||||
{% from "macros/form.njk" import label, field, select, option, textarea, checkboxes, button %}
|
{% from "macros/form.njk" import label, field, select, option, textarea, checkboxes, button, hidden_field %}
|
||||||
|
|
||||||
<section class="[ form-container ]">
|
<section class="[ form-container ]">
|
||||||
|
{% if not contactMember %}
|
||||||
<svg aria-hidden="true" viewBox="0 0 1440 131" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="#fff" d="M0 0h1440v131H0z"/><path d="M0 4.643l40-2.326c40-2.5 120-6.888 200 11.67 80 18.735 160 60.854 240 74.894 80 14.04 160 0 240-16.365 80-16.54 160-34.968 240-28.08 80 7.152 160 39.619 240 39.75 80-.131 160-32.598 200-49.139l40-16.365V131H0V4.643z" fill="#D6F253"/></svg>
|
<svg aria-hidden="true" viewBox="0 0 1440 131" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="#fff" d="M0 0h1440v131H0z"/><path d="M0 4.643l40-2.326c40-2.5 120-6.888 200 11.67 80 18.735 160 60.854 240 74.894 80 14.04 160 0 240-16.365 80-16.54 160-34.968 240-28.08 80 7.152 160 39.619 240 39.75 80-.131 160-32.598 200-49.139l40-16.365V131H0V4.643z" fill="#D6F253"/></svg>
|
||||||
|
{% endif %}
|
||||||
<div class="[ inner-wrapper ]">
|
<div class="[ inner-wrapper ]">
|
||||||
|
{% if not contactMember %}
|
||||||
<h2 id="contact-form" class="[ contact-heading ]">Nous contacter</h2>
|
<h2 id="contact-form" class="[ contact-heading ]">Nous contacter</h2>
|
||||||
|
{% endif %}
|
||||||
<form name="contact" method="POST" action="/form/contact-form-handler.php">
|
<form name="contact" method="POST" action="/form/contact-form-handler.php">
|
||||||
<ol class="[ field-list ]">
|
<ol class="[ field-list ]">
|
||||||
<li class="[ field-list__field-group ]">
|
<li class="[ field-list__field-group ]">
|
||||||
@ -16,20 +20,31 @@
|
|||||||
</li>
|
</li>
|
||||||
<li class="[ field-list__field-group ] [ full-width ]">
|
<li class="[ field-list__field-group ] [ full-width ]">
|
||||||
{{ label("Je vous contacte pour :", "select") }}
|
{{ label("Je vous contacte pour :", "select") }}
|
||||||
|
{% if contactMember %}
|
||||||
|
{{ select( "select", [
|
||||||
|
{label: "Obtenir un rendez-vous (décrivez votre projet en quelques lignes)", value: "option 1"},
|
||||||
|
{label: "Proposer une mission à un coopérateur", value: "option 3"}
|
||||||
|
], { required: true, options_before: [""], options_after: ["Autre demande"] } ) }}
|
||||||
|
{% else %}
|
||||||
{{ select( "select", [
|
{{ select( "select", [
|
||||||
{label: "Obtenir un rendez-vous (décrivez votre projet en quelques lignes)", value: "option 1"},
|
{label: "Obtenir un rendez-vous (décrivez votre projet en quelques lignes)", value: "option 1"},
|
||||||
{label: "Obtenir des précisions sur le statut d’entrepreneur salarié", value: "option 2"},
|
{label: "Obtenir des précisions sur le statut d’entrepreneur salarié", value: "option 2"},
|
||||||
{label: "Proposer une mission à un coopérateur", value: "option 3"},
|
{label: "Proposer une mission à un coopérateur", value: "option 3"},
|
||||||
{label: "Proposer un partenariat", value: "option 4"}
|
{label: "Proposer un partenariat", value: "option 4"}
|
||||||
], { required: true, options_before: [""], options_after: ["Autre demande"] } ) }}
|
], { required: true, options_before: [""], options_after: ["Autre demande"] } ) }}
|
||||||
|
{% endif %}
|
||||||
</li>
|
</li>
|
||||||
<li class="[ field-list__field-group ] [ full-width ]">
|
<li class="[ field-list__field-group ] [ full-width ]">
|
||||||
{{ label("Votre message", "message") }}
|
{{ label("Votre message", "message") }}
|
||||||
{{ textarea( "message", { required: true, autocapitalize: "sentences", spellcheck: "true" } ) }}
|
{{ textarea( "message", { required: true, autocapitalize: "sentences", spellcheck: "true" } ) }}
|
||||||
</li>
|
</li>
|
||||||
|
{% if contactMember %}
|
||||||
|
{{ hidden_field('subscribe', '') }}
|
||||||
|
{% else %}
|
||||||
<li class="[ field-list__field-group ] [ full-width ]">
|
<li class="[ field-list__field-group ] [ full-width ]">
|
||||||
{{ checkboxes("", "subscribe", [ "Je souhaite être tenu au courant de l’actualité Astrolabe"], { description: "" } ) }}
|
{{ checkboxes("", "subscribe", [ "Je souhaite être tenu au courant de l’actualité Astrolabe"], { description: "" } ) }}
|
||||||
</li>
|
</li>
|
||||||
|
{% endif %}
|
||||||
<!-- H o n e y p o t -->
|
<!-- H o n e y p o t -->
|
||||||
<li aria-hidden="true">
|
<li aria-hidden="true">
|
||||||
<label class="ohnohoney" for="name"></label>
|
<label class="ohnohoney" for="name"></label>
|
||||||
@ -40,6 +55,9 @@
|
|||||||
<input tabindex="-1" class="ohnohoney" autocomplete="off" type="email" id="email" name="email" placeholder="Your e-mail here">
|
<input tabindex="-1" class="ohnohoney" autocomplete="off" type="email" id="email" name="email" placeholder="Your e-mail here">
|
||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
{% if contactMember %}
|
||||||
|
{{ hidden_field('contactTo', contactMember) }}
|
||||||
|
{% endif %}
|
||||||
{{ button("Envoyer") }}
|
{{ button("Envoyer") }}
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
@ -7,6 +7,20 @@ $mail = new PHPMailer(true);
|
|||||||
|
|
||||||
$errors = '';
|
$errors = '';
|
||||||
$myEmail = getenv('ASTRO_SMTP_FROM');
|
$myEmail = getenv('ASTRO_SMTP_FROM');
|
||||||
|
$myEmailSplitted = explode('@', $myEmail);
|
||||||
|
$domainFromMyEmail = (
|
||||||
|
empty($myEmailSplitted[1])
|
||||||
|
|| count($myEmailSplitted) != 2
|
||||||
|
) ? ''
|
||||||
|
: $myEmailSplitted[1];
|
||||||
|
|
||||||
|
$wantedContact = filter_input(INPUT_POST, 'contactTo', FILTER_SANITIZE_SPECIAL_CHARS);
|
||||||
|
$wantedContact = (
|
||||||
|
empty($wantedContact)
|
||||||
|
|| strpos($wantedContact, '@') !== false
|
||||||
|
|| strpos($wantedContact, '&') !== false
|
||||||
|
|| empty($domainFromMyEmail)
|
||||||
|
) ? $myEmail : "$wantedContact@$domainFromMyEmail" ;
|
||||||
|
|
||||||
if(empty($_POST['namezzz']) || empty($_POST['emailzzz']) || empty($_POST['message'])) {
|
if(empty($_POST['namezzz']) || empty($_POST['emailzzz']) || empty($_POST['message'])) {
|
||||||
$errors .= "\n Error: all fields are required";
|
$errors .= "\n Error: all fields are required";
|
||||||
@ -27,7 +41,6 @@ $mail = new PHPMailer(true);
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(empty($errors)) {
|
if(empty($errors)) {
|
||||||
$to = $myEmail;
|
|
||||||
$emailSubject = "[Formulaire Astrolabe] Nouveau message";
|
$emailSubject = "[Formulaire Astrolabe] Nouveau message";
|
||||||
|
|
||||||
switch ($select) {
|
switch ($select) {
|
||||||
@ -66,7 +79,7 @@ $mail = new PHPMailer(true);
|
|||||||
|
|
||||||
//Recipients
|
//Recipients
|
||||||
$mail->setFrom($myEmail);
|
$mail->setFrom($myEmail);
|
||||||
$mail->addAddress($myEmail);
|
$mail->addAddress($wantedContact);
|
||||||
$mail->addReplyTo($emailAddress, $name);
|
$mail->addReplyTo($emailAddress, $name);
|
||||||
|
|
||||||
// Content
|
// Content
|
||||||
|
41
src/members-contact.njk
Normal file
41
src/members-contact.njk
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
---
|
||||||
|
title: 'Contacter un membre'
|
||||||
|
pagination:
|
||||||
|
data: collections.members
|
||||||
|
size: 1
|
||||||
|
alias: member
|
||||||
|
permalink: '/members/{{ member.fileSlug }}/contact/'
|
||||||
|
---
|
||||||
|
|
||||||
|
{% extends 'layouts/base.njk' %}
|
||||||
|
|
||||||
|
{% set memberData = member.data %}
|
||||||
|
{% set title = ["Écrire à ",memberData.name] | join %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<main id="main-content" tabindex="-1">
|
||||||
|
<section class="[ wrapper member ]">
|
||||||
|
<article>
|
||||||
|
<h1>{{ title }}</h1>
|
||||||
|
<p class="position">{{ memberData.position }}</p>
|
||||||
|
{% if memberData.positionInternal %}
|
||||||
|
<p>{{ memberData.positionInternal }}</p>
|
||||||
|
{% endif %}
|
||||||
|
<div class="[ member__wrapper ]">
|
||||||
|
<div class="member__info">
|
||||||
|
<img src="{{ memberData.profile }}" alt="photo de {{ memberData.name }}">
|
||||||
|
</div>
|
||||||
|
<div class="member__bio member-contact">
|
||||||
|
{% if memberData.emailSlug %}
|
||||||
|
{% set contactMember = memberData.emailSlug %}
|
||||||
|
{% else %}
|
||||||
|
{% set contactMember = member.fileSlug | replace("-",".") %}
|
||||||
|
{% endif %}
|
||||||
|
{% include "partials/components/contact-form.njk" %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</article>
|
||||||
|
<a class="return-link" href="/equipe">Voir tous les membres</a>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
{% endblock %}
|
@ -8,6 +8,7 @@ personalSite: 'https://consometers.org/'
|
|||||||
url: '/members/elias-martin-morisse'
|
url: '/members/elias-martin-morisse'
|
||||||
socialLinkedin: 'https://www.linkedin.com/in/elias-martin-morisse-073a3247/'
|
socialLinkedin: 'https://www.linkedin.com/in/elias-martin-morisse-073a3247/'
|
||||||
socialMastodon: 'https://mamot.fr/@jaxom_kaplan'
|
socialMastodon: 'https://mamot.fr/@jaxom_kaplan'
|
||||||
|
emailSlug: 'elias.martin-morisse'
|
||||||
tags: [numérique, coopération, gestion-projet, libre, énergie, nextcloud]
|
tags: [numérique, coopération, gestion-projet, libre, énergie, nextcloud]
|
||||||
location: [47.6514, -2.0839]
|
location: [47.6514, -2.0839]
|
||||||
---
|
---
|
||||||
|
@ -9,6 +9,7 @@ socialTwitter: 'https://twitter.com/AstrolabeCae'
|
|||||||
socialLinkedin: 'https://www.linkedin.com/in/florentls/'
|
socialLinkedin: 'https://www.linkedin.com/in/florentls/'
|
||||||
socialMastodon: 'https://framapiaf.org/@AstrolabeCAE'
|
socialMastodon: 'https://framapiaf.org/@AstrolabeCAE'
|
||||||
url: '/members/florent-le-saout'
|
url: '/members/florent-le-saout'
|
||||||
|
emailSlug: 'florent.lesaout'
|
||||||
tags: [ linux, dev, securité, libre, embarqué, gestion-projet, sensibilisation, education-populaire, animation, yocto, bootloader, FAE, CTS, gestion-client, C++, C, kernel]
|
tags: [ linux, dev, securité, libre, embarqué, gestion-projet, sensibilisation, education-populaire, animation, yocto, bootloader, FAE, CTS, gestion-client, C++, C, kernel]
|
||||||
location: [48.18163, -1.64052]
|
location: [48.18163, -1.64052]
|
||||||
---
|
---
|
||||||
|
@ -9,6 +9,7 @@ socialTwitter: 'https://twitter.com/JO_Interstices'
|
|||||||
socialLinkedin: 'https://www.linkedin.com/in/jacques-olivier-farcy-3806121a2'
|
socialLinkedin: 'https://www.linkedin.com/in/jacques-olivier-farcy-3806121a2'
|
||||||
socialMastodon: 'https://mamot.fr/@Jolivier'
|
socialMastodon: 'https://mamot.fr/@Jolivier'
|
||||||
url: '/members/jacques-olivier-farcy'
|
url: '/members/jacques-olivier-farcy'
|
||||||
|
emailSlug: 'jacques-olivier.farcy'
|
||||||
tags: [ conseil, numérique, level-designer ,visio, libre, open-source, sculpteur ]
|
tags: [ conseil, numérique, level-designer ,visio, libre, open-source, sculpteur ]
|
||||||
location: [48.1113, -1.6792]
|
location: [48.1113, -1.6792]
|
||||||
---
|
---
|
||||||
|
@ -5,6 +5,7 @@ positionInternal: 'Membre'
|
|||||||
date: '2023-07-01'
|
date: '2023-07-01'
|
||||||
profile: '/images/profiles/jafm-profile.jpeg'
|
profile: '/images/profiles/jafm-profile.jpeg'
|
||||||
url: '/members/jaf-marchandise'
|
url: '/members/jaf-marchandise'
|
||||||
|
emailSlug: 'jacques-francois.marchandise'
|
||||||
tags: [Conseil, Recherche, Prospective, Exploranum, Numérique]
|
tags: [Conseil, Recherche, Prospective, Exploranum, Numérique]
|
||||||
location: [47.70949, -3.34750]
|
location: [47.70949, -3.34750]
|
||||||
---
|
---
|
||||||
|
@ -6,6 +6,7 @@ date: '2020-12-01'
|
|||||||
profile: '/images/profiles/jcp-profile.jpg'
|
profile: '/images/profiles/jcp-profile.jpg'
|
||||||
socialLinkedin: 'https://www.linkedin.com/in/piriou-jean-christophe-9bb4bb3b/'
|
socialLinkedin: 'https://www.linkedin.com/in/piriou-jean-christophe-9bb4bb3b/'
|
||||||
url: '/members/jean-christophe-piriou'
|
url: '/members/jean-christophe-piriou'
|
||||||
|
emailSlug: 'jean-christophe.piriou'
|
||||||
tags: [ sig, qgis, postgre, postgis, sql, gestion-projet]
|
tags: [ sig, qgis, postgre, postgis, sql, gestion-projet]
|
||||||
location: [48.10451, -1.67977]
|
location: [48.10451, -1.67977]
|
||||||
---
|
---
|
||||||
|
@ -5,6 +5,7 @@ positionInternal: 'Support'
|
|||||||
date: '2023-01-01'
|
date: '2023-01-01'
|
||||||
profile: '/images/profiles/nlf-profile.jpg'
|
profile: '/images/profiles/nlf-profile.jpg'
|
||||||
url: '/members/nelly-leflem'
|
url: '/members/nelly-leflem'
|
||||||
|
emailSlug: 'contact'
|
||||||
tags: [ Comptabilité, Paie, Gestion, Tenue des comptes, Pack Libre, Silae, ExactOnline, EnDI ]
|
tags: [ Comptabilité, Paie, Gestion, Tenue des comptes, Pack Libre, Silae, ExactOnline, EnDI ]
|
||||||
location: [48.1133,-1.6837]
|
location: [48.1133,-1.6837]
|
||||||
---
|
---
|
||||||
|
@ -7,6 +7,7 @@ profile: '/images/profiles/oriane-saintcyr-profile.jpg'
|
|||||||
socialLinkedin: 'https://www.linkedin.com/in/oriane-sc/'
|
socialLinkedin: 'https://www.linkedin.com/in/oriane-sc/'
|
||||||
#socialMastodon: '
|
#socialMastodon: '
|
||||||
url: '/members/oriane-saint-cyr'
|
url: '/members/oriane-saint-cyr'
|
||||||
|
emailSlug: 'oriane.saint-cyr'
|
||||||
tags: [Numérique plus soutenable, Écologie, AMO, Numérique responsable, RSE, Reseau-Telecom]
|
tags: [Numérique plus soutenable, Écologie, AMO, Numérique responsable, RSE, Reseau-Telecom]
|
||||||
location: [45.648377, 0.156237]
|
location: [45.648377, 0.156237]
|
||||||
---
|
---
|
||||||
|
@ -6,6 +6,7 @@ date: '2023-01-20'
|
|||||||
profile: '/images/profiles/vlm-profile.jpg'
|
profile: '/images/profiles/vlm-profile.jpg'
|
||||||
socialLinkedin: 'https://www.linkedin.com/in/valerie-le-merrer/'
|
socialLinkedin: 'https://www.linkedin.com/in/valerie-le-merrer/'
|
||||||
url: '/members/valerie-le-merrer'
|
url: '/members/valerie-le-merrer'
|
||||||
|
emailSlug: 'valerie.lemerrer'
|
||||||
tags: [ cybersécurité, analyse de Risque, audit, conseil, sensibilisation ]
|
tags: [ cybersécurité, analyse de Risque, audit, conseil, sensibilisation ]
|
||||||
location: [48.213983, -1.505285]
|
location: [48.213983, -1.505285]
|
||||||
---
|
---
|
||||||
|
@ -9,6 +9,7 @@ socialTwitter: 'https://twitter.com/YLeDuc'
|
|||||||
socialLinkedin: 'https://www.linkedin.com/in/yleduc/'
|
socialLinkedin: 'https://www.linkedin.com/in/yleduc/'
|
||||||
socialMastodon: 'https://mastodon.top/@yleduc'
|
socialMastodon: 'https://mastodon.top/@yleduc'
|
||||||
url: '/members/yannick-le-duc'
|
url: '/members/yannick-le-duc'
|
||||||
|
emailSlug: 'yannick.leduc'
|
||||||
tags: [ dev, entreprise, intuition, développement, conseil, creation, veille, AMOA, AMOE ]
|
tags: [ dev, entreprise, intuition, développement, conseil, creation, veille, AMOA, AMOE ]
|
||||||
location: [48.118, -1.6858]
|
location: [48.118, -1.6858]
|
||||||
---
|
---
|
||||||
|
@ -45,6 +45,18 @@
|
|||||||
svg > path {
|
svg > path {
|
||||||
fill: var(--color-secondary);
|
fill: var(--color-secondary);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.member-contact-at {
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 1.7rem;
|
||||||
|
font-weight: 800;
|
||||||
|
|
||||||
|
&,
|
||||||
|
&:visited,
|
||||||
|
&:focus {
|
||||||
|
color: var(--color-secondary);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -56,7 +68,7 @@
|
|||||||
margin-top: 1.5rem;
|
margin-top: 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
&::before {
|
&:not(.member-contact)::before {
|
||||||
content: '';
|
content: '';
|
||||||
display: block;
|
display: block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@ -67,6 +79,11 @@
|
|||||||
top: -6rem;
|
top: -6rem;
|
||||||
left: -1.5rem;
|
left: -1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.member-contact .form-container {
|
||||||
|
border-radius: 1.75rem;
|
||||||
|
padding-top: 1.75rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user