24 lines
508 B
HTML
24 lines
508 B
HTML
{% load static %}
|
|
|
|
<div class="payment-buttons">
|
|
<!-- PayPal Button -->
|
|
{{ form.render }}
|
|
|
|
<!-- Alternative Zahlungsmethoden -->
|
|
<div class="mt-3">
|
|
<a href="{% url 'products:payment_process' order.id %}" class="btn btn-primary">
|
|
Mit Kreditkarte bezahlen
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.payment-buttons {
|
|
max-width: 500px;
|
|
margin: 20px auto;
|
|
padding: 20px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 8px;
|
|
background-color: #fff;
|
|
}
|
|
</style> |