151 lines
6 KiB
HTML
151 lines
6 KiB
HTML
{% extends "hosting/base_short.html" %}
|
|
{% load staticfiles bootstrap3 i18n %}
|
|
{% block content %}
|
|
<!-- Credit card form -->
|
|
<div>
|
|
<div class="payment-container">
|
|
<div class="row">
|
|
<div class="col-xs-12 col-md-offset-2 col-md-4 summary-box">
|
|
<form role="form" novalidate>
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<h3><b>{%trans "Billing Amount" %}</b></h3>
|
|
<hr>
|
|
<div class="content">
|
|
<!-- <p><b>Type</b> <span class="pull-right">{{request.session.vm_specs.location_code}}</span></p> -->
|
|
<!-- <hr> -->
|
|
<p><b>{%trans "Cores"%}</b> <span
|
|
class="pull-right">{{request.session.specs.cpu|floatformat}}</span></p>
|
|
<hr>
|
|
<p><b>{%trans "Memory"%}</b> <span
|
|
class="pull-right">{{request.session.specs.memory|floatformat}} GB</span></p>
|
|
<hr>
|
|
<p><b>{%trans "Disk space"%}</b> <span
|
|
class="pull-right">{{request.session.specs.disk_size|floatformat}} GB</span></p>
|
|
<hr>
|
|
<p><b>{%trans "Configuration"%}</b> <span
|
|
class="pull-right">{{request.session.template.name}}</span></p>
|
|
<hr>
|
|
<h4>Total<p
|
|
class="pull-right"><b>{{request.session.specs.price }} CHF</b></p></h4>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
</div>
|
|
<div class="col-xs-12 col-md-4 billing">
|
|
<h3><b>{%trans "Billing Address"%}</b></h3>
|
|
<hr>
|
|
<form role="form" id="billing-form" method="post" action="" novalidate>
|
|
{% for field in form %}
|
|
{% csrf_token %}
|
|
{% bootstrap_field field show_label=False type='fields'%}
|
|
{% endfor %}
|
|
{% bootstrap_form_errors form type='non_fields'%}
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-xs-12 col-md-offset-2 col-md-4 "></div>
|
|
<div class="col-xs-12 col-md-4 creditcard-box">
|
|
<h3><b>{%trans "Credit Card"%}</b></h3>
|
|
<hr>
|
|
<div>
|
|
<div>
|
|
<p> {% trans 'Please fill in your credit card information below. We are using <a href="https://stripe.com" target="_blank">Stripe</a> for payment and do not store your information in our database.' %}</p>
|
|
</div>
|
|
<br>
|
|
<div>
|
|
{% if credit_card_data.last4 %}
|
|
<form role="form" id="payment-form-with-creditcard"novalidate>
|
|
<h5 class="billing-head">Credit Card</h5>
|
|
<h5 class="membership-lead">Last 4: *****{{credit_card_data.last4}}</h5>
|
|
<h5 class="membership-lead">Type: {{credit_card_data.cc_brand}}</h5>
|
|
<input type="hidden" name="credit_card_needed" value="false"/>
|
|
</form>
|
|
|
|
<div class="row">
|
|
<br>
|
|
<div class="col-xs-12>
|
|
<p style="font-family: Lato;border: 1px solid #a1a1a1;border-radius: 3px; padding: 5px; ">{% trans "You are not making any payment yet. After submitting your card information, you will be taken to the Confirm Order Page." %}</p>
|
|
</div>
|
|
<div class="col-xs-12">
|
|
<div class="col-xs-6 pull-right">
|
|
<button style="width: 100px; float: right; font-style: normal; font-weight: bold; position: absolute; right: 0;" id="payment_button_with_creditcard" class="btn btn-success" type="submit">
|
|
{% trans "Submit" %}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% else %}
|
|
|
|
|
|
<form role="form" id="payment-form" novalidate>
|
|
<div class="row">
|
|
<div class="form-group col-xs-12">
|
|
<div id="card-element">
|
|
<!-- a Stripe Element will be inserted here. -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="card-errors" role="alert"></div>
|
|
<div class="row">
|
|
<br>
|
|
<div class="col-xs-12">
|
|
<p style="font-family: Lato;border: 1px solid #a1a1a1;border-radius: 3px; padding: 5px;"> {% trans "You are not making any payment yet. After submitting your card information, you will be taken to the Confirm Order Page." %}</p>
|
|
</div>
|
|
<div class="col-xs-12">
|
|
<div class="col-xs-6 pull-right">
|
|
<button style="width: 100px; float: right; font-style: normal; font-weight: bold; position: absolute; right: 0;" class="btn btn-success" type="submit">{% trans "Submit" %}</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row" style="display:none;">
|
|
<div class="col-xs-12">
|
|
<p class="payment-errors"></p>
|
|
</div>
|
|
</div>
|
|
{% if paymentError %}
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<p>
|
|
{% bootstrap_alert paymentError alert_type='danger' %}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
|
|
</form>
|
|
{% endif %}
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- stripe key data -->
|
|
{% if stripe_key %}
|
|
{% get_current_language as LANGUAGE_CODE %}
|
|
<script type="text/javascript">
|
|
|
|
|
|
(function () {
|
|
window.stripeKey = "{{stripe_key}}";
|
|
window.current_lan = "{{LANGUAGE_CODE}}";
|
|
})();
|
|
</script>
|
|
{%endif%}
|
|
|
|
{% if credit_card_data.last4 and credit_card_data.cc_brand %}
|
|
<script type="text/javascript">
|
|
(function () {window.hasCreditcard = true;})();
|
|
</script>
|
|
|
|
{%endif%}
|
|
|
|
{%endblock%}
|