fix bug form devis

This commit is contained in:
Ouidade Soussi Chiadmi 2022-04-04 16:50:27 +02:00
parent 2f006c43b0
commit c7262233b2
4 changed files with 13 additions and 11 deletions

View File

@ -1,6 +1,6 @@
enabled: true enabled: true
from: dev@figureslibres.io from: contact@figureslibres.io
from_name: null from_name: 'Le Campus'
to: ouidade@figureslibres.io to: ouidade@figureslibres.io
to_name: null to_name: null
queue: queue:
@ -11,16 +11,16 @@ queue:
mailer: mailer:
engine: sendmail engine: sendmail
smtp: smtp:
server: smtp.mailtrap.io server: null
port: 2525 port: null
encryption: none encryption: none
user: 5d9e29d57426c3 user: null
password: a207c1682777ef password: a207c1682777ef
auth_mode: null auth_mode: null
sendmail: sendmail:
bin: '/usr/sbin/sendmail -bs' bin: '/usr/sbin/sendmail -t'
content_type: text/html content_type: text/html
debug: false debug: true
charset: null charset: null
cc: null cc: null
cc_name: null cc_name: null

View File

@ -1778,7 +1778,8 @@ header nav.dropmenu > ul {
border-radius: 30px; border-radius: 30px;
padding: 10px 35px; padding: 10px 35px;
box-shadow: none; box-shadow: none;
border: 0; } border: 0;
cursor: pointer; }
.start#form .body-wrapper #send-valide { .start#form .body-wrapper #send-valide {
-webkit-transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%); transform: translate(-50%, -50%);

View File

@ -105,7 +105,7 @@ function links() {
} }
function clickbutton() { function clickbutton() {
var $button = $('#ajax-test-form .radio label'); var $button = $('#devis-form .radio label');
$button.on('click', function(){ $button.on('click', function(){
$(this).parents('.form-data').find('.check').removeClass('check'); $(this).parents('.form-data').find('.check').removeClass('check');
@ -183,7 +183,7 @@ function ajaxformulaire() {
location.reload(); location.reload();
}); });
var form = $('#ajax-test-form'); var form = $('#devis-form');
form.submit(function(e) { form.submit(function(e) {
// prevent form submission // prevent form submission
e.preventDefault(); e.preventDefault();
@ -272,7 +272,7 @@ jQuery(document).ready(function(){
"readmoreLink": "/cookiespolicy" /* Change the default readmore link */ "readmoreLink": "/cookiespolicy" /* Change the default readmore link */
}); });
// ajaxformulaire(); ajaxformulaire();
addclass(); addclass();
mapsalles(); mapsalles();
clickbutton(); clickbutton();

View File

@ -89,6 +89,7 @@
padding: 10px 35px; padding: 10px 35px;
box-shadow:none; box-shadow:none;
border:0; border:0;
cursor: pointer;
} }
} }
} }