This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
ckanext-ozwillo-pyoidc/ckanext/ozwillo_pyoidc/templates/logout_confirm.html

18 lines
491 B
HTML

{% extends "page.html" %}
{% block primary_content %}
<section class="module">
<div class="module-content">
<h3>
{% block page_heading %}
{{ _('Logout from CKAN') }}
{% endblock %}
</h3>
<form method="post" action="{{ c.slo_url }}">
<button>{% trans %}Logout{% endtrans %}</button>
<a href="{{ h.url_for('/') }}" class="portal">{% trans %}Go back to CKAN{% endtrans %}</a>
</form>
</div>
</section>
{% endblock %}