Acquisto online

e.driver Professional

tedesco / francese / italiano
Accesso di 18 mesi tramite Web e App

Prezzo: CHF 99.00

*
*
*
*
*
*
<style type="text/css" scoped>
.button {
border-radius: 50px;
height: 35px;
width: 260px;
margin-top: 2ch;
margin-bottom: 10px;
background-color: #0088CE;
cursor: pointer;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: center;
justify-content: space-around;
}
.button_text {
flex-grow: 0;
flex-shrink: 0;
flex-basis: auto;

color: #ffffff;
font-family: 'Source Sans Pro', sans-serif;
font-size: 16px;
font-weight: bold;
font-style: normal;
white-space: nowrap;
text-align: center;
}
{ font-weight: bold; } </style>
<div class="button" onclick="onShowButtons(event)">
<div class="button_text">Pagare</div>
</div>

<script>

function onShowButtons(event) {
let form = document.getElementById('postfinanceForm');
if (form.reportValidity()) {
let url = 'https://www8.e-university.ch/pmnt/buttons.html';
let params = new URLSearchParams(new FormData(form)).toString();
paymentWindow = window.open(url + '?' + params, '_blank', 'width=600,height=800');
}
}

function submitForm() {
let form = document.getElementById('postfinanceForm');
if (form.reportValidity()) {
var url = form.getAttribute('action');
var params = new URLSearchParams(new FormData(form)).toString();
paymentWindow = window.open(url + '?' + params, '_blank', 'width=600,height=400');
console.log('Form is valid');
} else {
console.log('Form is invalid');
}
}
</script>

{/source}