Klaus-Uwe Mitterer
41d71d313f
Adding superior ratings Use Nominatim for location lookups Implement hotel registration
25 lines
No EOL
1.1 KiB
HTML
25 lines
No EOL
1.1 KiB
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">
|
|
<h2>{% trans "Als Partner registrieren" %}</h2>
|
|
<p>Sie haben Interesse, mit Ihrem Hotel an JourneyJoker teilzunehmen?</p>
|
|
<p>Füllen Sie einfach folgendes Formular aus, um sich zu registrieren!</p>
|
|
|
|
<form method="POST">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
<button class="btn btn-orange btn-block">{% trans "Anwenden" %}</button>
|
|
</form>
|
|
</div><!-- end columns -->
|
|
</div><!-- end row -->
|
|
</div><!-- end container -->
|
|
</div><!-- end coming-soon-text -->
|
|
</section><!-- end innerpage-wrapper -->
|
|
{% endblock %} |