24 lines
599 B
HTML
24 lines
599 B
HTML
<!-- Base-Template einbinden -->
|
|
{% extends "users/publicbase.html" %}
|
|
|
|
{% load crispy_forms_tags %}
|
|
<!-- BLOCK NAME START -->
|
|
{% block content %}
|
|
|
|
<style type="text/css">
|
|
#logincard {
|
|
width: 35%;
|
|
margin-top: 4%;
|
|
}
|
|
</style>
|
|
<div class="card mx-auto" id="logincard">
|
|
<div class="card-body">
|
|
<legend class="border-bottom mb-4" style="text-align: center;">
|
|
<i class="fas fa-laptop"></i>
|
|
<h3>Bestellung abgeschlossen</h3>
|
|
</legend>
|
|
<p>Sie erhalten in den nächsten Tagen eine E-Mail mit allen Zahlungsinformationen zu Ihrer Bestellung.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{% endblock content %} |