24 lines
No EOL
981 B
HTML
24 lines
No EOL
981 B
HTML
{% extends "frontend/base.html" %}
|
|
{% load i18n %}
|
|
{% load bootstrap4 %}
|
|
{% block "content" %}
|
|
<!--===== INNERPAGE-WRAPPER ====-->
|
|
<section class="innerpage-wrapper">
|
|
<div id="payment-success" class="section-padding">
|
|
<div class="container text-center">
|
|
<div class="row d-flex justify-content-center">
|
|
<div class="col-md-12 col-lg-8 col-lg-offset-2">
|
|
<div class="payment-success-text">
|
|
<h2>{% trans "Benutzerprofil verifizieren" %}</h2>
|
|
|
|
<form method="POST">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
<button class="btn btn-orange btn-block">{% trans "Verifizieren" %}</button>
|
|
</div>
|
|
</div><!-- end columns -->
|
|
</div><!-- end row -->
|
|
</div><!-- end container -->
|
|
</div><!-- end coming-soon-text -->
|
|
</section><!-- end innerpage-wrapper -->
|
|
{% endblock %} |