mirror of
https://github.com/pretix/pretix.git
synced 2026-08-18 12:06:26 +00:00
- Add central framebreaker page via safelink helper - Update paypal, paypal2 and stripe plugins to use central framebreaker - Add CSP header to cookies.html --------- Co-authored-by: Mira Weller <weller@pretix.eu>
29 lines
948 B
HTML
29 lines
948 B
HTML
{% extends "error.html" %}
|
|
{% load i18n %}
|
|
{% load eventurl %}
|
|
{% load urlreplace %}
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
<h1>{% trans "Please continue in a new tab" %}</h1>
|
|
<p class="larger">
|
|
{% blocktrans trimmed %}
|
|
For security reasons, the following step is only possible in a new tab.
|
|
{% endblocktrans %}
|
|
</p>
|
|
<p class="larger">
|
|
{% blocktrans trimmed %}
|
|
If the new tab did not open automatically, please click the following button:
|
|
{% endblocktrans %}
|
|
</p>
|
|
<div class="text-center">
|
|
<a href="{{ url }}"
|
|
class="btn btn-primary btn-lg" target="_blank">
|
|
<span class="fa fa-external-link-square"></span>
|
|
{% trans "Continue in new tab" %}
|
|
</a>
|
|
{{ url|json_script:"framebreak-url" }}
|
|
<script type="text/javascript" src="{% static "pretixbase/js/framebreak.js" %}"></script>
|
|
</div>
|
|
{% endblock %}
|