-15% für Neukunden beim ersten Besuch
-15% für Neukunden beim ersten Besuch
AKTUELLE ANGEBOTE
Angebote gültig bis 30.04.2021. Nicht mit anderen Aktionen und Rabatten kombinierbar. Keine Barablöse.
Diese Homepage verwendet Cookies, um Ihnen einen bestmöglichen Service bieten zu können. Datenschutzerklärung
Kontakt
+43 664 514 7 222
contact@vitalitekosmo.com

Nibelungengasse 7, Top 16, Stock 3
1010 Wien
Montag - Freitag: 09:00-19:00
Samstag – nach Vereinbarung
Sonntag – geschlossen
// Set your publishable key. Remember to change this to your live publishable key in production! // See your keys here: https://dashboard.stripe.com/account/apikeys var stripe = Stripe('pk_live_51HzKjeFfyzdUxs3LIB3alkofuBXc1MYaXfPlFbG4CmuGY2CXv2zLB3UpTGei9QEj55xIoDVVnyLGCGBLFaMIvtlv006XktZg2z');
// Redirects away from the client stripe.confirmSofortPayment( '{{PAYMENT_INTENT_CLIENT_SECRET}}', { payment_method: { sofort: { country: "DE" } }, return_url: 'https://www.vitalitekosmo.com/erfolg', } );
$session = \Stripe\Checkout\Session::create([ 'payment_method_types' => ['card'], 'payment_method_types' => ['sofort'], // or you can take multiple payment methods with // 'payment_method_types' => ['card', 'sofort', ...] 'line_items' => [[ 'price_data' => [ 'currency' => 'usd', # To accept `sofort`, all line items must have currency: `eur` 'currency' => 'eur', 'product_data' => [ 'name' => 'T-shirt', ], 'unit_amount' => 2000, ], 'quantity' => 1, ]], 'mode' => 'payment', 'success_url' => 'https://www.vitalitekosmo.com/erfolg', 'cancel_url' => 'ttps://www.vitalitekosmo.com/fehler', ]);
var url = new URL(window.location); var clientSecret = url.searchParams.get('payment_intent_client_secret'); stripe.retrievePaymentIntent(clientSecret).then(function(response) { if (response.error) { // Handle error here } else if (response.paymentIntent && response.paymentIntent.status === 'succeeded') { // Handle successful payment here } });